You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a pie chart that triggers mouse over while we are tapping a chart and it shows tooltip, where as its working fine on android browsers. following is my code how I've dispatched these events
chart.pie.dispatch.on('chartClick', function OnChartClickPieChart( e ) {
me.redirect( e.data );
});
chart.pie.dispatch.on('elementClick', function OnElementClickPieChart( e ) {
me.redirect( e.data );
});
what works in my case for iOS browsers is this,
chart.pie.dispatch.on( 'elementMouseover', function OnMouseOverChart( e ) {
me.redirect( e.data );
});
but it will create issues for web and android browsers for obvious reasons.
I have a pie chart that triggers mouse over while we are tapping a chart and it shows tooltip, where as its working fine on android browsers. following is my code how I've dispatched these events
what works in my case for iOS browsers is this,
but it will create issues for web and android browsers for obvious reasons.
http://plnkr.co/edit/T4i7Zh?p=preview
it only works on android and web browsers
The text was updated successfully, but these errors were encountered: