Package org.jfree.chart.renderer
Class RangeType
java.lang.Object
org.jfree.chart.renderer.RangeType
public final class RangeType extends Object
An enumeration of the 'range types' for a renderer. This is used when
calculating the axis range required to display all the data in a
dataset...the result will depend on whether the renderer plots the values
directly (STANDARD) or stacks them (STACKED).
-
Field Summary
Fields Modifier and Type Field Description static RangeType
SERIES_CUMULATIVE
The overall range is determined by looking at the running total within each series.static RangeType
STACKED
The overall range is determined by looking at the sums of the values within each category.static RangeType
STANDARD
The overall range is determined by looking at the individual values. -
Method Summary
-
Field Details
-
STANDARD
The overall range is determined by looking at the individual values. -
STACKED
The overall range is determined by looking at the sums of the values within each category. -
SERIES_CUMULATIVE
The overall range is determined by looking at the running total within each series.
-
-
Method Details