com.androidplot.xy
Interface XYSeries

All Superinterfaces:
Series<android.util.Pair<Number,Number>>
All Known Implementing Classes:
SimpleXYSeries

public interface XYSeries
extends Series<android.util.Pair<Number,Number>>

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.
 int size()
           
 
Methods inherited from interface com.androidplot.Series
getTitle
 

Method Detail

size

int size()
Returns:
Number of elements in this Series.

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 © 2010-2013 androidplot.com. All Rights Reserved.