Velocedge Report post Posted November 6, 2012 Are there lables that can be attached to a pie chart in the free version? I've tried adding showLegend='1' and showValues='1' but can only see the labels and percentages when I mouse over a slice. Share this post Link to post Share on other sites
Guest Bindhu Report post Posted November 7, 2012 (edited) Are there lables that can be attached to a pie chart in the free version? I've tried adding showLegend='1' and showValues='1' but can only see the labels and percentages when I mouse over a slice. Hi, Please try using the attribute hoverText and set the custom text to be displayed as a value to this attribute. Ref. Code: <set hoverText='text to be displayed in toolTip' name=' 03/15 03:30' value='107031.77'> Hope this helps. Edited November 7, 2012 by Bindhu Share this post Link to post Share on other sites
Velocedge Report post Posted November 7, 2012 Actually, what I was looking for was the ability to display the labels without hovering over each slice of the pie. So, if it were printed, you'd see the labels. Share this post Link to post Share on other sites
FusionCharts Support Report post Posted November 7, 2012 Hi, Simply use showNames='1' in the <graph> element of your XML. Example XML: <graph showNames='1' decimalPrecision='0' > <set name='USA' value='20' isSliced='1'/> <set name='France' value='7' /> <set name='India' value='12' /> <set name='England' value='11' /> <set name='Italy' value='8' /> <set name='Canada' value='19'/> <set name='Germany' value='15'/> </graph> Moreover, there are options not to show percentage values in tooltip - just set showPercentageValues='0' in the <graph> element. Again, if you need to do a reverse - where you want to show percentage values (instead of the actual values) attached to each pie slice beside the labels - add showPercentageInLabel ='1' in the <graph> element. Hope this helps Share this post Link to post Share on other sites
Velocedge Report post Posted November 7, 2012 LOL... I thought I tried showEVERYTHING=1 ;-) Thanks so much, that worked great. Share this post Link to post Share on other sites
FusionCharts Support Report post Posted November 8, 2012 Great! Also, in case you need more help, you can always refer to the "Chart XML reference" of the respective chart from the FusionCharts FREE documentation. Share this post Link to post Share on other sites