VisualMelon
VisualMelon
hurried notes: I took a jab at it in https://github.com/VisualMelon/oxyplot-avalonia/tree/av11 But the plots didn't render. I hard-coded something to do with invalidation to true and then they started flickering. Something...
Changing `PlotBase.IsUserVisible` to `return element.IsEffectivelyVisible` seems to make the simple demo work, but it disappears when you pan the plot (so a good back if you just need static plots).
It's almost as if the old plot is being removed (by `Canvas.Clear()`) before the redraw, but the new plot isn't being added before the redraw (if you remove the clear,...
Are you able to share your repo? Might be that you've fixed something else that I've missed.
Cool, will try it out now. I fixed the ExampleBrowser so it works in 11 in my repo.
Yep, everything seems to be OK now. Still had to remove the bounds check in `PlotBase.IsUserVisible`, so may be other issues with that down the line.
> Also, may I ask what are the plans for the update, i.e. will there be a version for Avalonia 11 preview or only for the stable release? I have...
It was removed at some point. Use a `BarSeries` and set the `XAxisKey` and `YAxisKey` accordingly to determine the orientation of the plot.
Yes... I really must do that at some point
@Aschelde `BarSeries` - as the error says - demands a `CategoryAxis` on the YAxis: it won't work with e.g. `LinearAxis` for both axes. If you are using a `CategoryAxis` and...