raul.pimentel Report post Posted September 12, 2013 Hi, I'm using FusionChart's Stacked Column 3D to display the number of requests per product per month. From the picture above, let's take Jun 2013 as an example. The total number of requests is 348, with the AMS Device getting 169 of that number. Is it possible to show the number by percent (i.e. 48.56%) instead of 169? From what I know, that 348 is automatically computed by the chart via showSum='1'. Thanks, Poch Share this post Link to post Share on other sites
Guest Rishab Report post Posted September 13, 2013 Hi,Please try using the attributes 'showPercentValues' and 'showPercentInToolTip' of the <chart> element.The above attributes are used to show percentage figures in data values of the chart and also to show percentage figures in tool tip. For ex- <chart showPercentValues='1' showPercentInToolTip='1' ...> Share this post Link to post Share on other sites
raul.pimentel Report post Posted September 15, 2013 Hi, Please try using the attributes 'showPercentValues' and 'showPercentInToolTip' of the <chart> element. The above attributes are used to show percentage figures in data values of the chart and also to show percentage figures in tool tip. For ex- <chart showPercentValues='1' showPercentInToolTip='1' ...> Hi Rishab, It didn't work for me Here's the code bit: strXML = strXML & "<chart palette='2' labelDisplay='Rotate' slantLabels='1' showBorder='0' bgColor='FFFFFF,FFFFFF' caption='Volume(Percentage) of Tasks by Product' shownames='1' showvalues='0' showSum='1' decimals='0' useRoundEdges='1' showPercentValues='1' showPercentInToolTip='1'>" Did I do something wrong? Here's a screenshot of what shows: Share this post Link to post Share on other sites
Guest Rishab Report post Posted September 16, 2013 Hi,Can you please let us know the FusionCharts version that you are using in your application.At our end the code is working perfectly fine.Please refer the attached sample and screenshot for more information. StackedColumn.zip Share this post Link to post Share on other sites
raul.pimentel Report post Posted January 9, 2014 Hi Rishab, Sorry this took a while We prioritized another project and we acquired a license for the new version of FusionCharts, and I'm glad to say that the percentage in the tooltip text is now working! Thank you so much! Poch Share this post Link to post Share on other sites
raul.pimentel Report post Posted March 18, 2014 I'm sorry to resurrect this old thread, but my query is in line with my original one. The percentage values now show up in the tool tip. But is it possible to show both the value and percentage at the same time, or is that just one or the other? Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted March 19, 2014 Hi, Please note that natively FusionCharts library does not provide any attributes,which could show both the numeric values as well as percentage values together as tooltip. But, you could fulfill your requirement, by setting the values in both percentage as well as numeric, as string to the "toolText" attribute of the each set elements. Ref. Code snippet: <set value='10000' toolText='10,000, 23.47%'/> However, in this case "23.47%" needs to be calculated using your own utility function and FusionCharts will not allow you to implement any custom function for the same. Hope this helps! Share this post Link to post Share on other sites
raul.pimentel Report post Posted March 20, 2014 @ Sashibhusan: Tanks for this So, there's no automatic function for this? Nah, I guess the percentage will do Having both is nice to have but isn't really necessary for my internal clients anyway Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted March 20, 2014 Yes, there is no automatic process to show both percentage as well as numeric values as tooltip. However, if feasible, you can show the numeric values as data values (by setting showPercentValues='0') on the plot and on hovering over the mouse, show the percentage values of it as tool tip (by setting showPercentInToolTip='1'). Hope this helps! Share this post Link to post Share on other sites
snehasingi Report post Posted December 27, 2017 How to get new version of FushionChart? Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted December 27, 2017 Hi, You can download the latest version of FusionCharts from here - https://www.fusioncharts.com/download/ Share this post Link to post Share on other sites