Oxyplot graphs 13 points which are derived from the 6 user input text boxes. The values in
I just updated to a new version of OxyPlot via NuGet. I'm using OxyPlot.Wpf v20014.1.277.1 and I think you now need to call InvalidatePlot(bool updateData)
on the PlotModel
instead of RefreshPlot (which is no longer available). I tested this in my sample code and it worked as expected.
If you want to refresh the plot and update the data collections, you need to pass true
to the call:
PlotModel.InvalidatePlot(true)