BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
I'm hooking into the chart zoom events:_chart.ZoomStart += ChartZoomStarted;
_chart.ZoomDelta += ChartZoomChanged;and I limit zoom to X:ZoomMode = ZoomMode.Xand I set the initial zoom factor on the chart to 0.5 - I note that this is on the chart and NOT an axis...Then, when I pinch zoom the chart, the zoom factors I get reported to me in the event handlers don't appear to bear any relation to the zoom factor on the chart - which remains fixed at 0.5. Is this because these are axis zooms and these are independent of chart zoom?Is this how it is supposed to work? I couldn't find any meaningful documentation on the zoom factors reported and I'm just blindly experimenting to try and achieve what I want which is rather unsatisfactory and time consuming. Is there some documentation I'm missing? This: http://help.syncfusion.com/cr/xamarin/sfchart tells me nothing I couldn't read direct from the Assembly browser....What I'm trying to do is cancel zooming when it reaches a specified threshold in each direction but allow it to return in the opposite direction. I can do this by settingChartZoomStartEventArgs.Cancel = true;but I need to make sense of the reported zoom factors to re-enable it at the appropriate time...