VisualMelon

Results 435 comments of VisualMelon

@objorke thanks for the swift reply! Indeed, I have an application in mind where we slave multiple multiple plots and essentially implement a controller architecture to manage the events; it...

Thanks for reporting this. The `ItemSource` example in `CategorySeries` category of examples show this. Looks like the labels are not updated from `ItemSource` because there is no bar series manager...

It seems the combination of `CategoryAxis` and `ItemsSource` without `BarSeries` has been overlooked. I can't think of a nice solution to this at the moment without: it may make sense...

This issue means that the example on this page is current not working: https://oxyplot.readthedocs.io/en/latest/models/series/HeatMapSeries.html#tracker,Example

The root cause seems to be an issue with `GetNearestInterpolatedPointInternal`, which is returning null or in some cases I think nonsense for interpolated lines. It isn't clear what the behaviour...

Which version of OxyPlot are you using? `PointAnnotation` doesn't do any clipping, and the WPF `PngExporter` uses the same `CanvasRenderContext`, so the usual candidate of 'something wrong with text measuring'...

You'll need to extend the `*Axis` class you are using, and override the `GetTickValues` method. We could do with a bode plot example in the example library.

All existing releases target .NET 4.0 (though Skia may not work, I'm not sure). I'd be surprised if .NET Core perf was worse, and it has certainly become better over...

No, there's no threading/GPU support; the backend is very simple really. > I don't need any special privileges for .Net Core, but there must be .Net Core installed and this...

You can achieve this by overriding the `GetTicks` method on the various `Axis` classes. Linking #1640, because if that ever goes anywhere it should make this sort of thing much...