Issue:
Zooming is enabled even when UserInputProcessor.IsEnabled is false on MAUI
ScottPlot Version:
5.0.55
Code Sample:
Update Sandbox.Maui/MainPage.xaml.cs to disable the user input processor:
InitializeComponent();
MauiPlot1.Plot.Add.Signal(Generate.Sin());
MauiPlot1.Plot.Add.Signal(Generate.Cos());
MauiPlot1.UserInputProcessor.Disable();
MauiPlot1.Refresh();