amirouche Report post Posted April 15, 2012 (edited) Hi, How to hide label from plot Bar 2D Chart column and let only the values. Thx. Edited April 15, 2012 by amirouche Share this post Link to post Share on other sites
Swarnam Report post Posted April 16, 2012 Hi, To hide the X-axis label set showLabels attribute to 0. To hide the Y-axis values, set showYAxisValues attribute to 0. To display the value, set showValues attribute to 1. For more information, please refer the following link: http://docs.fusioncharts.com/charts/contents/ChartSS/Bar2D.html Share this post Link to post Share on other sites
amirouche Report post Posted April 16, 2012 When moving the cursor on the column we usually see the couple (label, value), what I would do is to hide the label and let only the value alone. Share this post Link to post Share on other sites
Swarnam Report post Posted April 16, 2012 Hey, By default, FusionCharts shows the data item name and value as tool tip text for that data item. To display only the values in the tooltip, you can set a custom tool tip for the data points using tooltext attribute of the <set> element which is used to define the individual data elements. <set label='Jan' value='220000' [b]toolText='[/b]220000[b]'[/b]/> For more information, please refer the following link: http://docs.fusioncharts.com/charts/contents/AttDesc/ToolTip.html Share this post Link to post Share on other sites
amirouche Report post Posted April 16, 2012 (edited) Thx a lot, it works , Now I would get the value calculated with the numberScaleValue not the original value. Thank you in advance. Edited April 16, 2012 by amirouche Share this post Link to post Share on other sites
Swarnam Report post Posted April 16, 2012 Hey, Glad to know it works. As mentioned earlier, you can set a custom tool tip for the data points using tooltext attribute of the <set> element which is used to define the individual data elements. The custom value should be passed to the attribute. <set label='Jan' value='220000' toolText='220K'/> Share this post Link to post Share on other sites
amirouche Report post Posted April 16, 2012 I use dynamic data I can't make fun of set each tool tip, How to get just toolText=value ? Share this post Link to post Share on other sites
Swarnam Report post Posted April 16, 2012 Hey, Two ways to help you out: <set value='220000'/> The above code by default will display tooltext as '220 K'. Since, no label is specified, by default FusionCharts displays only value Or The dynamic value has to be obtained and manipulate to a particular scale at your end and then pass it to the toolText attribute. Share this post Link to post Share on other sites
amirouche Report post Posted April 16, 2012 OK, I will elaborate the numberScaleValue variable before I pass it to the toolText attribute, while waiting for a direct getValue fusionchart function. . Thx for your help. Share this post Link to post Share on other sites