public interface FastXYSeries extends XYSeries
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.Modifier and Type | Method and Description |
---|---|
RectRegion |
minMax()
TIP: You can use
RectRegion.union(Number, Number) during
to keep a running tally of min/max values when iterating. |
RectRegion minMax()
RectRegion.union(Number, Number)
during
to keep a running tally of min/max values when iterating.RectRegion
representing the min/max values that currently exist this series.