mattj Report post Posted December 9, 2013 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 Report post Posted December 10, 2013 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