0
How to disable scroll in plotview?
Hi,
I would like to disable the possibility to scroll/zoom in my plotview. I dont want the user to scroll/zoom away from the graph by misstake.
Is this possible?
I would like to disable the possibility to scroll/zoom in my plotview. I dont want the user to scroll/zoom away from the graph by misstake.
Is this possible?
Customer support service by UserEcho
var linearAxis1 = new LinearAxis();
linearAxis1.IsZoomEnabled = false;
linearAxis1.IsPanEnabled = false;
Check examples there http://resources.oxyplot.org/examplebrowser/
Thank you very much!
linearAxis1.AbsoluteMaximum = 63;
linearAxis1.AbsoluteMinimum = -17;
here your user will be able to zoom and pan but only in the -17 to 63 range on the specified axis.