Feature Suggestion Description: ShowContextMenu is still working in below // plot == ScottPlot.WPF.WpfPlot plot.Interaction.Actions = Scottplot.Control.PlotActions.NonInteractive(); // -> MouseRightButtonDown, ShowContextMenu is still wo...
Suggestion: Love the new Multiplot feature instead of linking all plots separately! When I was playing around with the demo I couldn't get the context menu to pop up in any of the subplots except the first one. It's nice to be able to co...
Controls: Added Menu with Add() and Clear() methods to simplify context menu customization (#3150) Axes: Added rules for locking horizontal and/or vertical axes (#3160) @raburton Signal: Added Data.MinimumIndex and Data.MaximumIndex to allow for partial array rendering (#3158) @raburton Hea...
Controls: Added autoscale to default context menu (#4053) Axes: A polar plot axis can now be added with myPlot.Add.PolarAxis() and customized as seen in the cookbook (#4055, #3939) @CoderPM2011 Axis lines and spans: Added EnableAutoscale flag to allow plottables to be ignored when Pl...
As of updating to the latest ScottPlot (4.0.27) my custom context menu in WPF is no longer accessible and being overridden by the default provided one.swharden changed the title Custom ContextMenu overridden by default one Custom ContextMenu overridden by default one (WpfPlot) Apr 7, 2020 ...
*Controls: Fix issue preventing the context menu from appearing after it was used to open a new window (#4529)@david3951445 47 *Interactivity: Created`HitablePlottableDecorator`and`DragablePlottableDecorator`classes that wrap any`IPlottable`to add pixel-based mouse collision detection and drag cap...
5.0.51 1891050 WPF: Updated the WPF control to pass render requests though the new Multiplot system (#4666,#4667)@zygfrydw@VladislavPustovarov Multiplot: Improved right-click context menu support for multi-plot user controls (#4671)@nilsakesson ...
Releases 5.0.47 ScottPlot 5.0.47 Latest Latest Compare swharden released this 24 Nov 22:08 5.0.47 2389ab6 Controls: Fix issue preventing the context menu from appearing after it was used to open a new window (#4529) @david3951445 Interactivity: Created HitablePlottableDecorator and...
ContextMenuProperty.Changed.AddClassHandler<AvaPlot>((plot, args) => plot.ContextMenuChanged(args)); Expand All @@ -96,20 +85,31 @@ public AvaPlot() }; Backend = new ScottPlot.Control.ControlBackEnd((float)Bounds.Width, (float)Bounds.Height, GetType().Name); Backend.BitmapChanged += ...
The only method that corrects the behavior is to "autoscale" after app loads using context menu. Autoscale and Refresh in the program will not correct the behavior, it has to be autoscale in the plot window. The maui app is simple. In the XAML <Grid ColumnDefinitions="*" RowDefinitions...