Add a FAQ page demonstrating how to create a custom plot type (idea from https://github.com/ScottPlot/ScottPlot/discussions/1999) ### Basic Steps to Create a Custom Plot Type * Create a `CustomPlottable` class that implements [IPlottable](https://github.com/ScottPlot/ScottPlot/blob/main/src/ScottPlot4/ScottPlot/Plottable/IPlottable.cs) * Instantiate your plottable: `CustomPlottable myThing = new()` * Add it to your plot `formsPlot1.Plot.Add(myThing)`