Package 

Interface FastXYSeries

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

    
    public interface FastXYSeries
     implements XYSeries
                        

    An implementation of XYSeries that defines additional methods to speed up rendering by giving a hint to the renderer about the min/max values contained in the series. Note that these hints can only be leveraged if the containing XYPlot's constraints completely contain the FastXYSeries min/max values. If this condition is not met then XYPlot falls back to manually determining the min/max values of the series that exist within the defined constraints.

    • Method Summary

      Modifier and Type Method Description
      abstract RectRegion minMax() TIP: You can use union duringto keep a running tally of min/max values when iterating.
      • 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

      • minMax

         abstract RectRegion minMax()

        TIP: You can use union duringto keep a running tally of min/max values when iterating.