Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
 public void Style(Style style)
 {
     StyleTools.SetStyle(this, style);
 }