MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / Plot

Method Plot

ij/src/main/java/ij/gui/Plot.java:301–303  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 15

getDefaultFlagsMethod · 0.95
toFloatMethod · 0.95
setXYLabelsMethod · 0.95
addPointsMethod · 0.95
nonNullFontMethod · 0.95
getProcessorMethod · 0.95
adjustCalibrationMethod · 0.95
updateTypeMethod · 0.80
getCalibrationMethod · 0.80
closeMethod · 0.65
getFontMethod · 0.65

Tested by

no test coverage detected