Package 

Interface EditableXYSeries

  • All Implemented Interfaces:
    com.androidplot.Series , com.androidplot.xy.XYSeries

    
    public interface EditableXYSeries
     implements XYSeries
                        

    An XYSeries that exposes methods to set values and resize

    • Method Summary

      Modifier and Type Method Description
      abstract void setX(Number x, int index)
      abstract void setY(Number y, int index)
      abstract void resize(int size) Resize to accommodate the specified number of x/y pairs.
      • Methods inherited from class com.androidplot.xy.XYSeries

        getX, getY, size
      • 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

      • resize

         abstract void resize(int size)

        Resize to accommodate the specified number of x/y pairs. If elements must be droped, thoseat the highest iVal should be removed first.