VisualMelon
VisualMelon
Guessing this is this OxyPlot.Avalonia? I can't see any way this could happen in e.g. OxyPlot.WinForms, but the Avalonia version looks a little iffy. In particular, looks like it is...
Thanks, that example is very clear. Looking at some of my old OxyPlot.Avalonia code, looks like I'm moving all interaction with the model onto the UI thread, which may well...
You need to indicate the `MouseDown` event was handled, otherwise `MouseMove` does not fire: e.Handled = true;
The coordinates are screen coordinates, not data-space coordinates. You need to translate them with the axes of interest to determine the data-space coordinates (use the `Axis.InverseTransform`). You can see a...
No need to apologize; on the contrary, thinks for digging into this! Option 2 sounds like a reasonable thing to do in any case, but it may also makes sense...
We had some discussion about this a while back: I think this approach of starting with the ancillary parts is a good idea.
Re. `XmlWriterBase..ctor()`, I think we should just remove it, or replace it with a parameter that takes an `XmlWriter`. I think there is no way to actually get at the...
Re inline comments: I did... but I also forgot, so thanks for the reminder ;) Re. the arrays, I probably wasn't clear: I think they should both have nullable elements,...
Yeah, Arrays are always going to be weird. No big deal.
Sounds similar to https://github.com/oxyplot/oxyplot/pull/1797 : are you able to test with the develop branch or a CI built (e.g. https://www.myget.org/feed/oxyplot/package/nuget/OxyPlot.Core/2.1.0-unstable.1473) ?