Sign in to follow this  
Rurik Becker

Turn Off Interactivity In Pie Chart

Recommended Posts

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

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this