com.androidplot.series
Interface XYSeries

All Superinterfaces:
Series

public interface XYSeries
extends Series

Represents a two dimensional series of data represented as xy values.


Method Summary
 Number getMaxX()
           
 Number getMaxY()
           
 Number getMinX()
           
 Number getMinY()
           
 Number getX(int index)
          Returns the x-value for an index within a series.
 Number getY(int index)
          Returns the y-value for an index within a series.
 
Methods inherited from interface com.androidplot.series.Series
getTitle, onReadBegin, onReadEnd, size
 

Method Detail

getX

Number getX(int index)
Returns the x-value for an index within a series.

Parameters:
index - the index index (in the range 0 to size()-1).
Returns:
The x-value.

getMinX

Number getMinX()
Returns:
The lowest possible value returned by getX().

getMaxX

Number getMaxX()
Returns:
The highest possible value returned by getX().

getY

Number getY(int index)
Returns the y-value for an index within a series.

Parameters:
index - the index index (in the range 0 to size()-1).
Returns:
The y-value.

getMinY

Number getMinY()
Returns:
The lowest possible value returned by getY().

getMaxY

Number getMaxY()
Returns:
The highest possible value returned by getY().


Copyright © 2011. All Rights Reserved.