List of usage examples for org.jfree.data.xyz XYZSeries getItemCount
public int getItemCount()
From source file:org.jfree.data.xyz.XYZSeriesCollection.java
/** * Returns the number of items in the specified series. * /* w w w. j a v a 2 s .c o m*/ * @param seriesIndex the series index. * * @return The number of items in the specified series. */ @Override public int getItemCount(int seriesIndex) { ParamChecks.nullNotPermitted(this, null); XYZSeries s = this.series.get(seriesIndex); return s.getItemCount(); }