Home  Products  Purchase  Downloads  Demos  Forums  Blogs  Ticket  Wiki  API  Corporate


com.aspose.cells
Class ChartPoints

java.lang.Object
  extended by com.aspose.cells.ChartPoints

public class ChartPoints
extends java.lang.Object

Represents a collection that contains all the points in one series.


Method Summary
 ChartPoint getChartPoint(int index)
          Gets ChartPoint Object by index.
 java.util.Iterator<ChartPoint> getCustomedPointIterator()
          Gets an iterator to iterate all user customed ChartPoints in this collection.
 int size()
          Gets the total DataPoint count of corresponding ASeries.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getChartPoint

public ChartPoint getChartPoint(int index)
Gets ChartPoint Object by index.

Parameters:
index - The zero based index of the ChartPoint. This index must be less than size() value of this collection.
Returns:
ChartPoint Object.
See Also:
size()

size

public int size()
Gets the total DataPoint count of corresponding ASeries.

Returns:
the total DataPoint count of corresponding ASeries.

getCustomedPointIterator

public java.util.Iterator<ChartPoint> getCustomedPointIterator()
Gets an iterator to iterate all user customed ChartPoints in this collection.

Returns:
Iterator to iterate all user customed ChartPoints.