List of usage examples for org.jfree.chart.plot XYPlot clearDomainAxes
public void clearDomainAxes()
From source file:org.fhcrc.cpl.viewer.gui.MRMDialog.java
protected void clearPreviousChartJunk(XYPlot xyp) { if (xyp != null) { xyp.clearAnnotations();/*from w w w . ja va 2 s .co m*/ xyp.clearDomainAxes(); xyp.clearRangeAxes(); xyp.setDataset(null); } }