Moving annotation is slow
I am moving with annotation based on the slider value: As you can see, it is super slow and laggy. Blue line is the annotation, it should follow the mouse.

Steps to reproduce
Full UWP project with issue is here.
- Move with annotation on plot multiple times:
annotation.X = e.NewValue;//value from slider
annotation.PlotModel.InvalidatePlot(false);
Platform:
UWP SDK for 1903
Expected behaviour
It should be smooth. In presented project there are multiple plots and step frequency is set to .001. So a lot of changes. But even with single plot annotation isn't smooth enough...
Actual behaviour
Moving annotation is slow. If I move some element (let say button) by changing margin it is smoother.
Oxyplot always redraws the whole plot, even if only one single component changed. So depending on how complex your plot is this can take between 'very short' a 'a long time'. Do I understand correctly that you try to update the plot every millisecond? Have you tried to increase this value to, say, 100ms?
@Jonarw Yes I tried, and it's naturally better, but doesn't solve my real scenario (this is just demonstration of my issue).
So there is no way how to redraw just the annotation?
This is a limitation in this multi-platform & general purpose library. I think the architecture needs to be changed to support partial redraws...
I moved the invalidation to timer tick, so it doesn't slow down the slider. And now it's kind of bearable...

(full code in linked repo)
how to solve this problem?
@dlgcy there is no solution. As @objorke said, the architecture of OxyPlot does not lend itself to incremental updates, and no work has been done to facilitate partial redraws. The OverlayDemo in the WpfExamples project shows how you can use the UI library to present additional graphics outside of OxyPlot pipeline, which may be an option depending on the platform.