Orientation changed not correctly handled
On OXYPlot for Xamarin, if you change the orientation of the ios (iphone) device after loading the graph, it doesn't automaticly resizes to the new dimensions
Steps to reproduce
- load a graph on orientation portrait
- change the orientation
- see example screenshots
Platform: Xamarin iOS .NET version: .NET Standard
Expected behaviour
It should automaticly resize to the new dimensions
Actual behaviour
It shows really weird.. see screenshots

This issue should be moved to https://github.com/oxyplot/oxyplot-xamarin
Is this issue fixed? Iam facing same issue and couldn't get the corresponding issue in the link you provided @objorke
Hi Gentlemen, I am also struggling with this issue - were you able to come up with a solution?
For IOS, I was able to solve this issue by placing the following within OnSizeAllocated:
OxyPlotModel.Model.PlotView.InvalidatePlot();
OxyPlotModel is the name I assigned to the plot area within my XAML.