Package 

Interface XYSeries

  • All Implemented Interfaces:
    com.androidplot.Series

    
    public interface XYSeries
     implements Series
                        

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

    • Method Summary

      Modifier and Type Method Description
      abstract int size()
      abstract Number getX(int index) Returns the x-value for an index within a series.
      abstract Number getY(int index) Returns the y-value for an index within a series.
      • Methods inherited from class com.androidplot.Series

        getTitle
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • size

         abstract int size()
      • getX

         abstract Number getX(int index)

        Returns the x-value for an index within a series.

        Parameters:
        index - the index index (in the range 0 tosize()-1).
      • getY

         abstract Number getY(int index)

        Returns the y-value for an index within a series.

        Parameters:
        index - the index index (in the range 0 tosize()-1).