Constructs a new Plot with the default options. Use add(shape,xvalues,yvalues) to add curves. @param title the window title @param xLabel the x-axis label; see setXYLabels for seting categories on an axis via the label @param yLabel the y-axis label; see setXYLabels for seting categories on an axis
(String title, String xLabel, String yLabel)
| 299 | * @see #add(String,double[]) |
| 300 | */ |
| 301 | public Plot(String title, String xLabel, String yLabel) { |
| 302 | this(title, xLabel, yLabel, (float[])null, (float[])null, getDefaultFlags()); |
| 303 | } |
| 304 | |
| 305 | /** Obsolete, replaced by "new Plot(title,xLabel,yLabel); add(shape,x,y);". |
| 306 | * @deprecated |
nothing calls this directly
no test coverage detected