com.androidplot.series
Interface XYSeries

All Superinterfaces:
Series
All Known Implementing Classes:
SimpleXYSeries

public interface XYSeries
extends Series

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


Method Summary
 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, 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.

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.


Copyright © 2011. All Rights Reserved.