binman Report post Posted April 8, 2008 Is it possible to display percentage amounts on the pie chart slices instead of having to mouse over the slices to see the percentages in the tooltip? Share this post Link to post Share on other sites
Pallav Report post Posted April 8, 2008 Yes - pls set [chart showPercentValues='1' ] Share this post Link to post Share on other sites
binman Report post Posted April 9, 2008 Thanks for responding. I have tried using showpercentvalues='1' but all that does is display the percent value next to the label. I am looking for a result like below where the percent value is actaully embedded in the pie chart slices. I haven't been able to find any examples like this in FusionCharts so I'm curious if it can be done. Share this post Link to post Share on other sites
Pallav Report post Posted April 15, 2008 I'm afraid you cannot show 2 labels for each pie. Share this post Link to post Share on other sites
hubbardr1 Report post Posted April 15, 2008 Not sure if this is what you are looking for but I had a similar requirement. in order to meet it, I added the value to the label. I had showPercentValues='1' so that the chart displayed the % at the end of the label. Then I have some code that simply appends the value of that slice to the label: var value = 12345; s+="<set label='MyLabel: " + displayFormat(value) +"' value='"+value+"'/>"; The result is a value/percentage combo in the label: Share this post Link to post Share on other sites