stardust Report post Posted February 2, 2012 Is it possible to display slice in ascending order ?As there are several datas as 1,853,938,414 780,358,287 431,348,613 254,158,147 213,568,529 133,426,923 . when using pie2D diplay them, the order was like attachment. The order of slice is not clockwise ascending. waiting for your help, thanks. Share this post Link to post Share on other sites
Guest Angshu Report post Posted February 2, 2012 Hi, Thanks for your post. I am afraid, FusionCharts does not support this natively, as of now. We have come up with a work around which would suffice your requirement to some extent. Please find the XML code below: <chart caption="Marketing Expenses" bgColor="FFFFFF,CCCCCC" showPercentageValues="1" plotBorderColor="FFFFFF" numberPrefix="$" isSmartLineSlanted="0" showValues="0" showLabels="0" showLegend="1"> <set value="212000" label="Banners" color="99CC00" alpha="60"/> <set value="96800" label="Print Ads" color="333333" alpha="60"/> <set value="26400" label="Service" color="99CC00" alpha="30" /> <set value="29300" label="Others" color="333333" alpha="30"/> <styles> <definition> <style type='animation' name='clockRotate' param="_rotation" start="-360" /> </definition> <application> <apply toObject='DATAPLOT' styles='clockRotate'/> </application> </styles> </chart> Hope this helps. Share this post Link to post Share on other sites