Scott W Harden
                                            Scott W Harden
                                        
                                    #4119 was a great start, but I noticed that it produces unexpected results due to accumulated floating point error when I call: ```cs double[] fractions = ScottPlot.Generate.Range(0, 1, 0.05); ```...
Lollipop charts were present in ScottPlot 4 https://scottplot.net/cookbook/4.1/recipes/bar_lollipop/ It would be nice to add this plot type to ScottPlot 5. It is distinct from bar plots and should be its...
Sometimes it's necessary to prevent renders while data inside plottables is being modified. Following a discussion with @MahmoudArabied and @zhengqiwen1997 in #4135 and #4140, I noticed that this is much...
Plot.Save() should detect the extension and call the appropriate save method (or throw an exception)
AxisLimits: add `Contains()` to return whether a coordinate is visible within the axis limits
I see there's a `HorizontalSpan.UnderMouse(rect)` but it would be nice to have `HorizontalSpan.IsUnderMouse(rect)` to match the API of `VerticalLine`
Here's some code to get things started ```cs using FFMpegCore; using FFMpegCore.Pipes; using SkiaSharp; // prepare data representing 10 seconds of a 1000 Hz recording double sampleRate = 1000; double...
Presently the `Markers` plot type displays many points using identical styling, and achieving marker-specific styling must be accomplished by adding many individual `Marker` objects and styling them individually. It would...
This may be solved (or caused?) by #4102 or #4112 but I'm noticing SignalXY rendering issues... 
We need to add a cookbook example showing how to use custom typefaces for access labels, tick labels, and in Legends. I think there is an example in the test...