Rurik Becker Report post Posted February 21, 2013 hello, i have a pie chart rendered by javascript (not flash) and want to turn off interactivity. the user should not be able to slice out or turn the pie. there is an attribute interactiveLegend. is there something similar for the chart or any other way to handle this. Share this post Link to post Share on other sites
Swarnam Report post Posted February 22, 2013 Hi, To turn off the interactivity for JavaScript charts, set enableSlicing and enableRotation attribute as '0' in the chart element. Hope this helps. Share this post Link to post Share on other sites
Rurik Becker Report post Posted February 22, 2013 Hi, To turn off the interactivity for JavaScript charts, set enableSlicing and enableRotation attribute as '0' in the chart element. Hope this helps. this had no effect unfortunately, the chart is still interactive. Share this post Link to post Share on other sites
Sanjukta Report post Posted February 23, 2013 Hi, this had no effect unfortunately, the chart is still interactive. Could you please try setting the following attributes in the <chart> element of the Pie chart XML and see if this helps? Ex: <chart ... slicingDistance='0' enableSlicing='0' enableRotation='0'> Hope this helps. Share this post Link to post Share on other sites