mattj

Pie Chart and Touch Devices

Recommended Posts

Hello FusionCharts -

 

Our current web application is displaying a fusioncharts pie chart.  This works great.  However, for mobile, touch devices, I need to disable touch interactions with the pie chart so as to not interfere with the underlying page scrolling mechanism.  For example, on an Apple iPad (iOS), the pie chart (javascript rendering) blocks the user's ability to scroll the page with their finger.

 

I have experience with Highcharts, and have found a work-around that basically bypasses the chart's eventing mechanism and allows the underlying iOS to implement it's default behavior.

 

Is FusionCharts aware of this; and, can FusionCharts provide either an alternative solution to this please?

 

Thanks,

Matt Jurgensen

[email protected]

 

Share this post


Link to post
Share on other sites
Guest Sashibhusan

Hi,

 

Could you please try once by setting "enableRotation" to "0" , "enableSlicing" to "0" and make sure the "link" attribute is not provided in the <set> element for all pie slices?

 

Ref. XML Code:

<chart enableRotation='0' enableSlicing='0' >
   <set label='Services' value='26'  />
   <set label='Hardware' value='32' />
   <set label='Software' value='42' />
</chart>

Please note that to interact with the Pie chart, it has 3 modes: Slicing, Rotation and Link. So, disabling all the three modes will prevent the interaction with the chart.

 

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