List of usage examples for weka.gui.visualize PlotData2D setXindex
public void setXindex(int x)
From source file:milk.visualize.MIPlot2D.java
License:Open Source License
private void setXValue(Axis anx) { m_xIndex = anx.index;/*from w w w. j a v a 2s . c o m*/ m_maxX = anx.maxValue; m_minX = anx.minValue; if (m_plots != null) { for (int i = 0; i < m_plots.size(); i++) { PlotData2D pl = (PlotData2D) m_plots.elementAt(i); pl.setXindex(m_xIndex); } } m_axisChanged = true; }