Feature Suggestion
Description: ShowContextMenu is still working in below
// plot == ScottPlot.WPF.WpfPlot
plot.Interaction.Actions = Scottplot.Control.PlotActions.NonInteractive();
// -> MouseRightButtonDown, ShowContextMenu is still working
Code example: I change code like below, and its working correctly.
src/ScottPlot5/ScottPlot5/Control/Interaction.cs
// ~~~
if (!isDragging && (button == Inputs.ClickContextMenuButton))
{
// Control.ShowContextMenu(position); // before
Actions.ShowContextMenu(Control, position); // After
}
// ~~~