Show dataTips on Chart

Hi,
I found some cool stuff in the internet. and I want to develop it. the code shows or draw a line while mouse are moving on the chart. Now I want to show the data tips/data points if the line get on the linechart. I already googling but I dont found any solution. I see an example on the internet but I dont know how to do it
http://www.google.com/finance?q=INDEXDJX:.DJI,INDEXSP:.INX,INDEXNASDAQ:.IXIC
can sombody help me?
thanks in advance
here is the code:
the mxml file:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*" xmlns:display="flash.display.*">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.collections.ArrayCollection;
                 [Bindable]
            private var expensesAC:ArrayCollection = new ArrayCollection( [
                { Month: "Jan", Profit: 2000, Expenses: 1500, Amount: 450 },
                   { Month: "Feb", Profit: 1000, Expenses: 200, Amount: 600 },
                   { Month: "Mar", Profit: 1500, Expenses: 500, Amount: 300 },
                { Month: "Apr", Profit: 1800, Expenses: 1200, Amount: 900 },
                { Month: "May", Profit: 2400, Expenses: 575, Amount: 500 } ]);
            ]]>
        </mx:Script>
        <mx:LineChart dataProvider="{expensesAC}" showDataTips="true">
            <mx:annotationElements>
                <local:Ruler/>
            </mx:annotationElements>
            <mx:horizontalAxis>
                <mx:CategoryAxis categoryField="Month"/>
            </mx:horizontalAxis>
            <mx:series>
                <mx:LineSeries yField="Profit" form="curve" displayName="Profit"/>
                <mx:LineSeries yField="Expenses" form="curve" displayName="Expenses"/>
                <mx:LineSeries yField="Amount" form="curve" displayName="Amount"/>
            </mx:series>
        </mx:LineChart>
</mx:Application>
the as file:
package{
import flash.events.MouseEvent;
import flash.geom.Point;
import mx.charts.chartClasses.ChartElement;
import mx.charts.events.ChartItemEvent;
import mx.controls.Alert;
    public class Ruler extends ChartElement{
        private var main:Main = new Main();
        public function Ruler():void{
            super();
            addEventListener(MouseEvent.MOUSE_MOVE,handleMouseMove);
            addEventListener(MouseEvent.MOUSE_OUT,handleMouseOut);   
        private function handleMouseMove(e:MouseEvent):void{
            updateDisplayList(unscaledWidth,unscaledHeight);           
            var p:Point = new Point(this.mouseX,this.mouseY);
            graphics.lineStyle(2,0xFF0000,0.5);
            graphics.moveTo(0,p.y);
            graphics.lineTo(unscaledWidth,p.y);
            graphics.moveTo(p.x,0);
            graphics.lineTo(p.x,unscaledHeight);
        private function handleMouseOut(e:MouseEvent):void{
            updateDisplayList(unscaledWidth,unscaledHeight);
        override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void{           
            super.updateDisplayList(unscaledWidth, unscaledHeight);
            graphics.clear();  
            graphics.moveTo(0,0);
            graphics.lineStyle(0,0x000000,0);
            graphics.beginFill(0x000000,0);
            graphics.drawRect(0,0,unscaledWidth,unscaledHeight);
            graphics.endFill();

Unfortunately the code I wrote was just for testing and is very buggy.
I based it on two related examples I found:
http://shemesh.axspace.com/Charts_Programmatically_Show_DataTips_Using_DataTipItems/
and
http://reality-and-a-half.multiversum.com/werkzeuge/flex-show-chart-datatips-if-mouse-is-a nywhere-on-the-chart
They don't do exactly what you are looking for, but maybe it will give you some idea on how to proceed.
The charting DataTips do not seem to be a simple nut to crack as far as duplicating their normal behavior when showing multiple tips. Good luck and please share if you come up with a good solution.

Similar Messages

  • Show DataTips for each series

    Is there a way to customize the DataTips for each series in a
    chart? I have a column chart that has a line series in it. The
    columns display actual data, but the line shows an average.
    Currently the datatips are set to show the column chart values,
    even when a user hovers over a line chart datatip. Is there any way
    to have the datatips for the lineseries display the lineseries
    data?
    I know I could create a DataTipFormatter that included both
    the column data and the line data at the same time, but I would
    like them separate.

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    L (Flex 3):
    The LineChart control represents a data series as points
    connected by a continuous .... whose contents are highlighted when
    a user moves the mouse over it.
    Link:
    http://livedocs.adobe.com/flex/3/langref/all-index-L.html
    Is it possible to use data labels with line chart? - Flex
    India:
    Feb 27, 2008 ... I want to create a line chart which shows
    all the labels, regardless of the mouse pointer.
    showAllDataTips=true works but the result is
    Link:
    http://groups.google.com/group/flex_india/browse_thread/thread/709c9651ad7c9062
    mx.charts.LineChart (Flex 2.0.1 Language Reference):
    Specifies the distance, in pixels, that Flex considers a data
    point to be under the mouse pointer when the mouse moves around a
    chart.
    Link:
    http://livedocs.adobe.com/flex/201/langref/mx/charts/LineChart.html
    Print Page - Disable datatip but keep mouse event on line
    chart:
    Flex and ActionScript 3.0 => Flex Charting => Topic
    started by: Sablotron on 29 July 2008, ... Title: Disable datatip
    but keep mouse event on line chart
    Link:
    http://www.flexdeveloper.eu/forums/index.php?action=printpage;topic=895.0
    [#FLEXDMV-1683] dataTipFunction for LineChart is not executed
    when:
    Mar 12, 2008 ... Set dataProvider for LineChart with one
    datapoint 3. Set a dataTipFunction for the LineChart Actual
    Results: Datatip does not show on mouse
    Link:
    http://bugs.adobe.com/jira/browse/FLEXDMV-1683
    Disable datatip but keep mouse event on line chart |
    flexdeveloper:
    Aug 6, 2008 ... Disable datatip but keep mouse event on line
    chart, help forums for developers working with ActionScript 3.0,
    Flex 3, Flash CS3.0, and AIR.
    Link:
    http://www.flexdeveloper.eu/forums/index.php?topic=895.msg2716
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • SSRS 2008: how to show an empty chart with legend and x and y axis when no data available

    Hi,
    I am using SSRS 2008, I generated one chart in report designer with the data from Analysis Services (Cube).
    According to the dataset, there is no data returned when I run the query. so when I preview the chart, there is nothing but "no data available" showing on the chart.
    Here I want to know is there any possible to show an empty chart with legend and x and y axis?
    If it is possible, can you tell me how can I make it?
    Best Regards.
    Connie Zhu

    Hi,
    When there is no data, the chart displays the message "no data available". But using a little work around, you can display an empty chart.
    Please find the below steps given to achieve this
    1. Create a new dataset using TSQL to return 1 row of data having the category field and value field set to 0. Add the fields that are necessary for the category fields, series fields and datafields.
       A simple example would be like
       SELECT 'abc' as Category, 0 as Amount
    2. Add a new chart, set the category field to 'Category' and set the data field to Amount from above dataset created in step 1.
    3. In the new chart, right click the category axis and select axis properties, Click on the labels tab, check on
    'Hide axis labels' and then click ok
    4. Now set the Visibility property of both the charts depending on the rows returned from your main dataset
       a. click on your main chart and set its Hidden property to :
    =iif(CountRows("MainDataSet"),false,true) 
       b. click on the new blank chart added and set its Hidden proprety to (the opposite) :
    =iif(CountRows("MainDataSet"),true,false) 
       Note : Please change the dataset name in above expression "MainDataset" to the name of your chart's dataset
    5. Resize the new chart to the same size as your main chart, then position the new chart on the place as the main chart.
       (Note : You can set the position of new chart to be same by copying the location property from the main chart) 
    6. Now run and observe the result. When there are no rows returned by your main dataset, the new chart (the blank chart) should be displayed.
    I've added a working sample of this kind of a report
    here.
    Hope this helps. Please feel free to discuss if you have any questions.
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.
    BH

  • Show dataTip on a datagrid column

    Hi,
    I need to show dataTip on a datagrid column only if its length is greater than 20 chars.
    Additionaly, my datagrid is a custom component, I am passing the column names as an array and building the grid dynamically
    so that it could be used for any dataprovider (with different set of columns).
    when the dataTipFunction is invoked runtime I would not know the column field name
    to access the value since the dataTipFunction makes available only the item:Object unlike labelFunction which provides both item and column.
    But i would know all the column names at any given point in time.
    Is there anyway we can get hold for which column the dataTipFunction is being called for...
    Any help is greatly appreciated.

    Subclass DataGridColumn and add the dataTipFunction to the subclass.  Then
    the 'this' pointer will be the column.

  • Does hidden column data always show up in charts? Id prefer it not.

    Ive got a long time series I like to keep updated in one table, and sometimes I like to use that data for a chart with all of the numbers, and sometimes, just a short section of the beginning (annual numbers) and the latest figures at the end of the series (monthly). So I hide the monthly data (for example, columns e through s) and want to show a,b,c,d, and t through z. But if you chart that series, with E-S hidden, they still show up in the chart.
    Is there some way to make those hidden series not show in the chart? Or do I have to keep one full series table, and then another table with only the data I want to chart?
    thx

    gdd9000 wrote:
    Is there some way to make those hidden series not show in the chart? Or do I have to keep one full series table, and then another table with only the data I want to chart?
    We have to keep two tables.
    Yvan KOENIG (from FRANCE lundi 8 décembre 2008 19:16:52)

  • Show data in chart is overlaping

    in one of my chart in webi i switch on the property of show data in chart.
    i have three measures in the chart.
    Now the problem is somtime these measures data is overlap on chart.
    how to avoid this overlaping of chart data.
    Regards
    Malik

    Chart type is Vartical and Line.
    i have three measures
    Sales Value
    Stock Value
    GP%
    Even my Sales and Stock values are in thousands.
    Sales and Stock is in bar and GP% represend by line.
    GP% is creating problem. somtimes GP% exactly come to the place of Sales or stock value data value
    so GP% and Sales or Stock value will overlap and we can not read anything what is exact value.
    i hope you can understand.
    Regards
    malik

  • How to change dynamically the number of lines to show in time chart

    Hello all,
    I need your help for the following scenario:
    In browser is an applet available that contains a tree. Each tree node have the id. The user can select  a tree node and open a crystal report with time chart. This time chart shows values for tree node id(y-axis). The values are measurement values from database. The database table contains:
    id_field = tree node id,
    value_field = measurement value,
    and time_field.
    So, my problem is that the user can select more than one tree node. The maximum selection count is 16.
    My idea is to do something in the following way:
      1) create function ("myFunction")
      2) set function as filter
      3) add my function  (or parameters)to y axis
    For example:
    filter:
    if {@time_field} in {@time_begin_param} to_ {@time_end_param} and {@myFunction}
    "myFunction"-function:
    if ( treenode_id1 != -1 )
    then "if {@id_field} = treenode_id1"
    else if ( treenode_id2 != -1 )
    then "if {@id_field} = treenode_id1 or {@id_field} = treenode_id2"
    When the user selection is changed:
    1) in my struts action u2013 create report programmatically
    2) set parameter treenode_id1 u2013 treenode_id16 equals user selection
    3) open report
    My question is what is the correctly way to solve my problem?
    And here some concrete questions:
    1) When I set 16 parameters for y axis how can I hide unused parameters?
    2) When I'm using filter with function is the function in db request or are all data requested and then filtered?
    3) Can I add data set to my chart programmatically from my struts action?
    4) When it is possible can I add parameters to y axis also programmatically?
    5) Is it possible to change data set of crystal report without recreating the report?
    Any help is appreciated!
    (and sorry for my bad english)
    Greetings,
    Nikolas

    Hello all,
    I need your help for the following scenario:
    In browser is an applet available that contains a tree. Each tree node have the id. The user can select  a tree node and open a crystal report with time chart. This time chart shows values for tree node id(y-axis). The values are measurement values from database. The database table contains:
    id_field = tree node id,
    value_field = measurement value,
    and time_field.
    So, my problem is that the user can select more than one tree node. The maximum selection count is 16.
    My idea is to do something in the following way:
      1) create function ("myFunction")
      2) set function as filter
      3) add my function  (or parameters)to y axis
    For example:
    filter:
    if {@time_field} in {@time_begin_param} to_ {@time_end_param} and {@myFunction}
    "myFunction"-function:
    if ( treenode_id1 != -1 )
    then "if {@id_field} = treenode_id1"
    else if ( treenode_id2 != -1 )
    then "if {@id_field} = treenode_id1 or {@id_field} = treenode_id2"
    When the user selection is changed:
    1) in my struts action u2013 create report programmatically
    2) set parameter treenode_id1 u2013 treenode_id16 equals user selection
    3) open report
    My question is what is the correctly way to solve my problem?
    And here some concrete questions:
    1) When I set 16 parameters for y axis how can I hide unused parameters?
    2) When I'm using filter with function is the function in db request or are all data requested and then filtered?
    3) Can I add data set to my chart programmatically from my struts action?
    4) When it is possible can I add parameters to y axis also programmatically?
    5) Is it possible to change data set of crystal report without recreating the report?
    Any help is appreciated!
    (and sorry for my bad english)
    Greetings,
    Nikolas

  • Final confirmd oper. still showing in "operation chart" on the sch.board

    Hi
    Is there a way to set up the detailed scheduling board (operation chart) so that operations with status "final confirmed" will not show?. Today we see a blue "up-side down" "triangle"
    Thanks in Adnavce

    Hi,
    You can go through below post based on which you should work to resolve your issue. Am not sure since don't know much in PPDS module..
    Restrict SNP orders on PPDS board
    Thanks,
    nandha

  • Single Bubble does not show in bubble chart

    It would be great if there were a separate forum for Flex
    Charting related discussion.
    I noticed that you have only one row of data in your
    dataProvider for a BubbleChart (and hence only one bubble), the
    chart shows up empty. I believe this is a bug. Here is a test
    program:
    <mx:Script> <![CDATA[
    [Bindable]
    private var expenses:ArrayCollection = new ArrayCollection([
    {Month: "Jan", Profit: 2400, Expenses: 1500, Amount: 1450}
    ]]>
    </mx:Script>
    <mx:BubbleChart id="bubble2" paddingLeft="5"
    height="100%" width="100%" creationComplete="init()"
    paddingRight="5" dataProvider="{expenses}"
    showDataTips="true">
    <mx:series >
    <mx:Array>
    <mx:BubbleSeries dataProvider="{expenses}"
    xField="Expenses" yField="Profit" radiusField="Amount" name="e1"
    fill="{grad}" rollOverEffect="{glow}" />
    </mx:Array>
    </mx:series>
    </mx:BubbleChart>
    <mx:Legend dataProvider="{bubble2}"/>

    Best guess is that the image is only on one field and PP is showing you the other.

  • Showing graphs and charts

    How do I show bars or piecharts in a JSP Page ? Do I need any sort of extension?

    Look at http://cewolf.sourceforge.net/

  • Videos not showing under top charts in itunes

    After the 5.1 update on Friday I cannot see music videos in Itunes under Top Charts but I can see them if I just look under all.

    Does your iTunes store not display these selection buttons?

  • How to show top 10 chart songs in my iTunes?

    I used to have Itunes on my windows laptop and when i added genis on the right side it showed the top 10 songs downloaded from itunes, which you could preview a few seconds before buying.. is this not available on the MacBook version? i added Genis but its not there.... How do i add it? it was pretty handy for new music...

    You can open the iTunes Store, and find "Top Singles" on the right side of the Store's home page.
    The songs can be previewed there.

  • Help with Datatip Not showing on 2 different charts at the same time

    What's up guys?  I am building a massive application and came across an issue. I was able to create a smaller flex application that recreate the problem. Basically its about the datatip. Let's say you have a Main application with tab navigation that calls 2 different modules:  Module A, and Module B. Module A has a piechart with datatip enabled. Module B has a linechart with datatip also enabled. For some reason the piechart datatip are showing while the linechart datatip are not showing on mouse over (only on click). Any idea what's going on or how to fix it so that both charts show their datatip on mouse over? -Thank you
    Here are the codes below:
    MAIN APPLICATION:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" paddingTop="20">
        <mx:VBox paddingTop="50" width="80%" height="100%" paddingLeft="50">       
                <mx:TabNavigator width="80%" height="100%" >           
                    <mx:VBox label="Module A" >
                        <mx:ModuleLoader url="tester2.swf" width="100%" height="100%"/>
                    </mx:VBox>
                    <mx:VBox label="Module B" mouseChildren="true" >
                        <mx:ModuleLoader url="tester.swf" width="100%" height="100%" />
                    </mx:VBox>                   
                </mx:TabNavigator>   
        </mx:VBox>   
    </mx:Application>
    Module A:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"   xmlns:local="assets.*"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function mouser(event:MouseEvent):void
                    Alert.show("RPG");
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { quarter:1, shooter:1000, racing:400, rpg:550 } );
                    _chartDP.addItem( { quarter:2, shooter:875, racing:230, rpg:600 } );
                    _chartDP.addItem( { quarter:3, shooter:920, racing:310, rpg:512 } );
                    _chartDP.addItem( { quarter:4, shooter:750, racing:130, rpg:489 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:LineChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }" showDataTips="true"  y="45" x="83" >
            <!-- Setting our Axis/Axes -->
            <mx:horizontalAxis>
                <mx:CategoryAxis categoryField="quarter" title="Sales Quarter" />
            </mx:horizontalAxis>   
            <!-- Set up our data series -->   
            <mx:series >
                <mx:LineSeries yField="shooter" displayName="First Person Shooter" form="segment" />
                <mx:LineSeries yField="racing" displayName="Racing Simulation" form="segment" />
                <mx:LineSeries yField="rpg" displayName="Role Playing Game" form="segment"  />
            </mx:series>
        </mx:LineChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  x="121" y="10"/>
    </mx:Module>
    Module B:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  initialize="_onInitialize( event )">
        <mx:Script>
            <![CDATA[
                import mx.events.FlexEvent;
                import mx.collections.ArrayCollection;
                [Bindable] private var _chartDP:ArrayCollection;
                private function  _onInitialize( event:FlexEvent ):void
                    // set up our chart data
                    _chartDP = new ArrayCollection();
                    _chartDP.addItem( { genre:"Shooter", quarter1:1000, quarter2:932,  quarter3:845, quarter4:663 } );
                    _chartDP.addItem( { genre:"Racing",  quarter1:565,  quarter2:875,  quarter3:732, quarter4:432 } );
                    _chartDP.addItem( { genre:"RPG",     quarter1:432,  quarter2:743,  quarter3:531, quarter4:289 } );
            ]]>
        </mx:Script>
        <!-- defining the chart -->
        <mx:PieChart id="gameSales_chrt"   
           dataProvider="{ _chartDP }"
           showDataTips="true" y="60" x="10">
            <!-- Set up our data series -->   
            <mx:series>
                <mx:PieSeries
                    nameField="genre"
                    field="quarter2"
                    labelPosition="insideWithCallout" />
            </mx:series>
        </mx:PieChart>
        <!-- Set up the legend for the chart -->
        <mx:Legend dataProvider="{ gameSales_chrt }" direction="horizontal"  y="10" x="24"/>
    </mx:Module>

    Well upon using the debug function and having a stop at the show datatip static function, i came across this error
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.managers::DragManagerImpl@195b9b21 to mx.managers.IDragManager.
    at mx.managers::DragManager$/get impl()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager.as:15 2]
    at mx.managers::DragManager$/get isDragging()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\managers\DragManager .as:187]
    at mx.charts.chartClasses::ChartBase/processRollEvents()[C:\work\flex\dmv_automation\project s\datavisualisation\src\mx\charts\chartClasses\ChartBase.as:2310]
    at mx.charts.chartClasses::ChartBase/mouseMoveHandler()[C:\work\flex\dmv_automation\projects \datavisualisation\src\mx\charts\chartClasses\ChartBase.as:4308]

  • Stacked 100% bar chart - Problem with datatips for zero value data points

    I have a stacked 100% bar chart that shows datatips in Flex 4.   However, I don't want it to show datatips for
    data points with zero values.   Flex 4 shows the datatip for a zero value data point on the left side of a bar if the data point is not the first in the series.
    Here's the code that illustrates this problem.    Of particular concern is the July bar.    Because of the zero value data point problem, it's not possible to see the datatip for "aaa".
    Any ideas on how we can hide/remove the datatips for zero value data points ?        Thanks.
    <?xml version="1.0"?>
    <s:Application
    xmlns:fx="
    http://ns.adobe.com/mxml/2009"xmlns:mx="
    library://ns.adobe.com/flex/mx"xmlns:s="
    library://ns.adobe.com/flex/spark"creationComplete="initApp()"
    height="
    1050" width="600">
    <s:layout>
    <s:VerticalLayout/>
    </s:layout>
    <fx:Script><![CDATA[ 
    import mx.collections.ArrayCollection;[
    Bindable] 
    private var yearlyData:ArrayCollection = new ArrayCollection([{month:
    "Aug", a:1, b:10, c:1, d:10, e:0},{month:
    "July", a:1, b:10, c:10, d:10, e:0},{month:
    "June", a:10, b:10, c:10, d:10, e:0},{month:
    "May", a:10, b:10, c:10, d:0, e:10},{month:
    "April", a:10, b:10, c:0, d:10, e:10},{month:
    "March", a:10, b:0, c:10, d:10, e:10},{month:
    "February", a:0, b:10, c:10, d:10, e:10},{month:
    "January", a:10, b:10, c:10, d:10, e:10}]);
    private function initApp():void {}
    ]]>
    </fx:Script>
    <s:Panel title="Stacked Bar Chart - Problems with DataTips for Zero Value Items" id="panel1">
    <s:layout>
    <s:HorizontalLayout/>
    </s:layout>
    <mx:BarChart id="myChart" type="stacked"dataProvider="
    {yearlyData}" showDataTips="true">
    <mx:verticalAxis>
     <mx:CategoryAxis categoryField="month"/>
     </mx:verticalAxis>
     <mx:series>
     <mx:BarSeries
    xField="a"displayName="
    aaa"/>
     <mx:BarSeries
    xField="b"displayName="
    bbb"/>
     <mx:BarSeries
    xField="c"displayName="
    ccc"/>
     <mx:BarSeries
    xField="d"displayName="
    ddd"/>
     <mx:BarSeries
    xField="e"displayName="
    eee"/>
     </mx:series>
     </mx:BarChart>
     <mx:Legend dataProvider="{myChart}"/>
     </s:Panel>
     <s:RichText width="700">
     <s:br></s:br>
     <s:p fontWeight="bold">The problem:</s:p>
     <s:p>Datatips for zero value data points appear on left side of bar (if data point is not the first point in series).</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">For example:</s:p>
     <s:p>1) For "June", eee = 0, mouse over the left side of the bar to see a datatip for "eee". Not good.</s:p>
     <s:br></s:br>
     <s:p>2) For "July", eee = 0 and aaa = 1, can't see the datatip for "aaa", instead "eee" shows. Real bad.</s:p>
     <s:br></s:br>
     <s:p>3) For "Feb", aaa = 0, datatip for "aaa" (first point) does not show. This is good.</s:p>
     <s:br></s:br>
     <s:p>4) For "Mar", bbb = 0, datatip for "bbb" shows on the left side of the bar. Not good.</s:p>
     <s:br></s:br>
     <s:p fontWeight="bold">Challenge:</s:p>
     <s:p>How can we hide/remove datatips for zero value data points?</s:p>
     <s:br></s:br>
     </s:RichText></s:Application>

    FYI.
    Still have the issue after upgrading to the latest Flex Builder 4.0.1 with SDK 4.1.0 build 16076.   
    Posted this as a bug in the Adobe Flex Bug and Issue Management system.     JIRA
    http://bugs.adobe.com/jira/browse/FLEXDMV-2478
    Which is a clone of a similar issue with Flex 3 ...
    http://bugs.adobe.com/jira/browse/FLEXDMV-1984

  • How to show dependency Arrrow in Project Gantt chart ?

    Hi,
    I have a requirement in which I need to show a Gantt chart showing Project and corresponding task of it. If Say Task2 is dependent on Task1 then I need to show an arrrow between these two tasks showing the dependency direction. But in my prototype project I am not able to show these arrow. I have attached my sample project. In this (Project2) I have a Task table having taskId, startTime, endTime and dependentTask coulmn, After I created EO, VO, AM and run the AM, I can see the Task2 is dependent on Task1, using the viewlink accessor window
    But when I drag and drop this on a page as Project Gantt chart I can not see the dependency arrows. while creating gantt chart, in the dependency tab of Gantt chart I have provided fromTaskId -> taskId and To task Id -> dependentTask.
    Still the arrows are not coming, Please help.
    The table creation script is below
    create table task_data (     
    name varchar2(30),
    taskId varchar2(30) primary key,
    startTime date,
    endTime date,
    dependentTask varchar2(30),
    type varchar2(30)
    insert into task_data values ('Project1', '1', '01-JAN-2012', '30-JAN-2012', null, 'PROJECT');
    insert into task_data values ('Task1', '2', '01-JAN-2012', '10-JAN-2012', null, 'TASK');
    insert into task_data values ('Task2', '3', '10-JAN-2012', '20-JAN-2012', '2', 'TASK');
    insert into task_data values ('Task3', '4', '20-JAN-2012', '30-JAN-2012', '3', 'TASK');
    commit;

    Publish your prototype somewhere where we can download it.

Maybe you are looking for

  • Incomplete Data on Desktop

    Hi! Everyone We are working wit MAM 25 SR5 SP21. We do have the following parameters  set on the MobileEngine.config file: MobileEngine.Sync.RepetitiveSyncEnabled=true MobileEngine.Sync.MaximumNumberOfRepetitiveSyncs=10 MobileEngine.Sync.TimeBetweenR

  • Browser showing Compressor as Apple ProRes 422.

    I am working with HD clips from a Canon using AVCHD codec so I am wondering why my Browser, Compressor column shows Apple ProRes 422. Keep trying to find something in the manual or online video tutorial but no luck. Does this have something to do wit

  • SUP-Error creating Unwired Server Connection connection to MyUnwiredServer

    Hi all, I've installed the SUP 1.5.2 and selected the Evaulatiuon (30 day trial) and my Unwired Server cannot start. When i try to test the connection in Enterprise Explorer -> Unwired Servers -> My Unwired Server i get the error. com.sybase.uep.admi

  • Crystal 2008 EVALUATION broke Visual Studio Team System 2008 Developer Ed.

    After installing the Crystal 2008 EVALUATION, I can no longer edit Crystal Reports in Visual Studio Team System 2008 Developer Edition. When I open the report I get a blank grey screen instead of the designer. Please help.

  • Provider for membership provider in Business Application Silverlight

    Hello. I'm using: -VS 2010 Ultimate -ODAC 1120230Beta (for EntityFramework) -DB Oracle 10.2 How to use Oracle provider for membership provider (or Role Manager provider) in Business Application Silverlight (WCF RIA)? Has read article. http://www.orac