Suggestion: With the release of ScottPlot 5 it seems that a feature where "gaps" were created on encounter a double.NaN value has been removed. As described here [https://scottplot.net/faq/nan/](in the 4.1 cookbook) I am asking that this feature be re-introduced.
var plt = new ScottPlot.Plot(600, 400);
var scatter1 = plt.AddScatter(xs, ys, Color.Gray);
var scatter2 = plt.AddScatter(xs, ysWithNan, Color.Black);
scatter2.OnNaN = ScottPlot.Plottable.ScatterPlot.NanBehavior.Gap;
