public Plot(int width = 800, int height = 600) { if (width <= 0 || height <= 0) { throw new ArgumentException("width and height must each be greater than 0"); } StyleTools.SetStyle(this, ScottPlot.Style.Default); Resize(width, height); }
public void Style(Style style) { StyleTools.SetStyle(this, style); }