Uses of Class
org.jfree.data.Range
| Package | Description |
|---|---|
| org.jfree.chart.annotations |
A framework for adding annotations to charts.
|
| org.jfree.chart.axis |
Axis classes and interfaces.
|
| org.jfree.chart.block |
Blocks and layout classes used extensively by the
LegendTitle class. |
| org.jfree.chart.plot |
Plot classes and related interfaces.
|
| org.jfree.chart.renderer.category |
Plug-in renderers for the
CategoryPlot class. |
| org.jfree.chart.renderer.xy |
Plug-in renderers for the
XYPlot class. |
| org.jfree.chart.title |
Classes used to display chart titles and subtitles.
|
| org.jfree.data |
The base package for classes that represent various types of data.
|
| org.jfree.data.category |
A package containing the
CategoryDataset interface and related classes. |
| org.jfree.data.general |
Data interfaces and classes.
|
| org.jfree.data.jdbc |
Dataset classes that fetch data from a database via JDBC.
|
| org.jfree.data.statistics |
Classes for representing statistical data.
|
| org.jfree.data.time |
Interfaces and classes for time-related data.
|
| org.jfree.data.xy |
A package containing the
XYDataset interface and related classes. |
-
Uses of Range in org.jfree.chart.annotations
Methods in org.jfree.chart.annotations that return Range Modifier and Type Method Description RangeXYAnnotationBoundsInfo. getXRange()Returns the range of x-values (in data space) that the annotation uses.RangeXYDataImageAnnotation. getXRange()Returns the x-range for the annotation.RangeXYAnnotationBoundsInfo. getYRange()Returns the range of y-values (in data space) that the annotation uses.RangeXYDataImageAnnotation. getYRange()Returns the y-range for the annotation. -
Uses of Range in org.jfree.chart.axis
Fields in org.jfree.chart.axis declared as Range Modifier and Type Field Description static RangeValueAxis. DEFAULT_RANGEThe default axis range.Methods in org.jfree.chart.axis that return Range Modifier and Type Method Description RangeValueAxis. getDefaultAutoRange()Returns the default auto range.RangeValueAxis. getRange()Returns the range for the axis.Methods in org.jfree.chart.axis with parameters of type Range Modifier and Type Method Description voidValueAxis. setDefaultAutoRange(Range range)Sets the default auto range and sends anAxisChangeEventto all registered listeners.voidCyclicNumberAxis. setRange(Range range, boolean turnOffAutoRange, boolean notify)Sets a new axis range.voidDateAxis. setRange(Range range)Sets the upper and lower bounds for the axis and sends anAxisChangeEventto all registered listeners.voidDateAxis. setRange(Range range, boolean turnOffAutoRange, boolean notify)Sets the range for the axis, if requested, sends anAxisChangeEventto all registered listeners.voidLogarithmicAxis. setRange(Range range)Overridden version that calls original and then sets up flag for log axis processing.voidPeriodAxis. setRange(Range range, boolean turnOffAutoRange, boolean notify)Sets the range for the axis, if requested, sends anAxisChangeEventto all registered listeners.voidValueAxis. setRange(Range range)Sets the range for the axis and sends a change event to all registered listeners.voidValueAxis. setRange(Range range, boolean turnOffAutoRange, boolean notify)Sets the range for the axis and, if requested, sends a change event to all registered listeners.voidValueAxis. setRangeWithMargins(Range range)Sets the range for the axis (after first adding the current margins to the specified range) and sends anAxisChangeEventto all registered listeners.voidValueAxis. setRangeWithMargins(Range range, boolean turnOffAutoRange, boolean notify)Sets the range for the axis after first adding the current margins to the range and, if requested, sends anAxisChangeEventto all registered listeners.Constructors in org.jfree.chart.axis with parameters of type Range Constructor Description ModuloAxis(String label, Range fixedRange)Creates a new axis. -
Uses of Range in org.jfree.chart.block
Methods in org.jfree.chart.block that return Range Modifier and Type Method Description RangeRectangleConstraint. getHeightRange()Returns the width range.RangeRectangleConstraint. getWidthRange()Returns the width range.Methods in org.jfree.chart.block with parameters of type Range Modifier and Type Method Description protected Size2DBorderArrangement. arrangeRR(BlockContainer container, Range widthRange, Range heightRange, Graphics2D g2)Performs an arrangement with range constraints on both the vertical and horizontal sides.RectangleConstraintRectangleConstraint. toRangeHeight(Range range)Returns a constraint that matches this one on the width attributes, but has a range height constraint.RectangleConstraintRectangleConstraint. toRangeWidth(Range range)Returns a constraint that matches this one on the height attributes, but has a range width constraint.Constructors in org.jfree.chart.block with parameters of type Range Constructor Description RectangleConstraint(double w, Range h)Creates a new constraint with a fixed width and a range for the height.RectangleConstraint(double w, Range widthRange, LengthConstraintType widthConstraintType, double h, Range heightRange, LengthConstraintType heightConstraintType)Creates a new constraint.RectangleConstraint(Range w, double h)Creates a new constraint with a range for the width and a fixed height.RectangleConstraint(Range w, Range h)Creates a new "range width and height" instance. -
Uses of Range in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return Range Modifier and Type Method Description RangeCategoryPlot. getDataRange(ValueAxis axis)Returns the range of data values that will be plotted against the range axis.RangeCombinedDomainCategoryPlot. getDataRange(ValueAxis axis)Returns a range representing the extent of the data values in this plot (obtained from the subplots) that will be rendered against the specified axis.RangeCombinedDomainXYPlot. getDataRange(ValueAxis axis)Returns a range representing the extent of the data values in this plot (obtained from the subplots) that will be rendered against the specified axis.RangeCombinedRangeCategoryPlot. getDataRange(ValueAxis axis)Returns a range representing the extent of the data values in this plot (obtained from the subplots) that will be rendered against the specified axis.RangeCombinedRangeXYPlot. getDataRange(ValueAxis axis)Returns a range representing the extent of the data values in this plot (obtained from the subplots) that will be rendered against the specified axis.RangeFastScatterPlot. getDataRange(ValueAxis axis)Returns the range of data values to be plotted along the axis, ornullif the specified axis isn't the domain axis or the range axis for the plot.RangePolarPlot. getDataRange(ValueAxis axis)Returns the range for the specified axis.RangeThermometerPlot. getDataRange(ValueAxis axis)Returns the data range.RangeValueAxisPlot. getDataRange(ValueAxis axis)Returns the data range that should apply for the specified axis.RangeXYPlot. getDataRange(ValueAxis axis)Returns the range for the specified axis.RangeMeterInterval. getRange()Returns the range.RangeMeterPlot. getRange()Returns the overall range for the dial.Methods in org.jfree.chart.plot with parameters of type Range Modifier and Type Method Description voidMeterPlot. setRange(Range range)Sets the range for the dial and sends aPlotChangeEventto all registered listeners.Constructors in org.jfree.chart.plot with parameters of type Range Constructor Description MeterInterval(String label, Range range)Creates a new interval.MeterInterval(String label, Range range, Paint outlinePaint, Stroke outlineStroke, Paint backgroundPaint)Creates a new interval. -
Uses of Range in org.jfree.chart.renderer.category
Methods in org.jfree.chart.renderer.category that return Range Modifier and Type Method Description RangeAbstractCategoryItemRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.protected RangeAbstractCategoryItemRenderer. findRangeBounds(CategoryDataset dataset, boolean includeInterval)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeBarRenderer. findRangeBounds(CategoryDataset dataset, boolean includeInterval)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeBoxAndWhiskerRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values from the specified dataset that the renderer will require to display all the data.RangeCategoryItemRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeGroupedStackedBarRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeIntervalBarRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values from the specified dataset.RangeScatterRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedAreaRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedBarRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStatisticalBarRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStatisticalLineAndShapeRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeWaterfallBarRenderer. findRangeBounds(CategoryDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset. -
Uses of Range in org.jfree.chart.renderer.xy
Methods in org.jfree.chart.renderer.xy that return Range Modifier and Type Method Description RangeAbstractXYItemRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.protected RangeAbstractXYItemRenderer. findDomainBounds(XYDataset dataset, boolean includeInterval)Returns the lower and upper bounds (range) of the x-values in the specified dataset.RangeClusteredXYBarRenderer. findDomainBounds(XYDataset dataset)Returns the x-value bounds for the specified dataset.RangeVectorRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.RangeXYBarRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.RangeXYBlockRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.RangeXYErrorRenderer. findDomainBounds(XYDataset dataset)Returns the range required by this renderer to display all the domain values in the specified dataset.RangeXYItemRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.RangeXYShapeRenderer. findDomainBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the x-values in the specified dataset.protected RangeClusteredXYBarRenderer. findDomainBoundsWithOffset(IntervalXYDataset dataset)Iterates over the items in anIntervalXYDatasetto find the range of x-values including the interval OFFSET so that it centers the interval around the start value.RangeAbstractXYItemRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.protected RangeAbstractXYItemRenderer. findRangeBounds(XYDataset dataset, boolean includeInterval)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeCandlestickRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeDeviationRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeHighLowRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedXYAreaRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedXYAreaRenderer2. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeStackedXYBarRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeVectorRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeXYBarRenderer. findRangeBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the y-values in the specified dataset.RangeXYBlockRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeXYBoxAndWhiskerRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeXYErrorRenderer. findRangeBounds(XYDataset dataset)Returns the range required by this renderer to display all the range values in the specified dataset.RangeXYItemRenderer. findRangeBounds(XYDataset dataset)Returns the lower and upper bounds (range) of the y-values in the specified dataset.RangeXYShapeRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeYIntervalRenderer. findRangeBounds(XYDataset dataset)Returns the range of values the renderer requires to display all the items from the specified dataset.RangeXYShapeRenderer. findZBounds(XYZDataset dataset)Return the range of z-values in the specified dataset. -
Uses of Range in org.jfree.chart.title
Methods in org.jfree.chart.title with parameters of type Range Modifier and Type Method Description protected Size2DShortTextTitle. arrangeRN(Graphics2D g2, Range widthRange)Arranges the content for this title assuming a range constraint for the width and no bounds on the height, and returns the required size.protected Size2DTextTitle. arrangeRN(Graphics2D g2, Range widthRange)Arranges the content for this title assuming a range constraint for the width and no bounds on the height, and returns the required size.protected Size2DPaintScaleLegend. arrangeRR(Graphics2D g2, Range widthRange, Range heightRange)Returns the content size for the title.protected Size2DShortTextTitle. arrangeRR(Graphics2D g2, Range widthRange, Range heightRange)Returns the content size for the title.protected Size2DTextTitle. arrangeRR(Graphics2D g2, Range widthRange, Range heightRange)Returns the content size for the title. -
Uses of Range in org.jfree.data
Methods in org.jfree.data that return Range Modifier and Type Method Description static RangeRange. combine(Range range1, Range range2)Creates a new range by combining two existing ranges.static RangeRange. combineIgnoringNaN(Range range1, Range range2)Returns a new range that spans bothrange1andrange2.static RangeRange. expand(Range range, double lowerMargin, double upperMargin)Creates a new range by adding margins to an existing range.static RangeRange. expandToInclude(Range range, double value)Returns a range that includes all the values in the specifiedrangeAND the specifiedvalue.RangeDomainInfo. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeRangeInfo. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range.static RangeRange. scale(Range base, double factor)Scales the range by the specified factor.static RangeRange. shift(Range base, double delta)Shifts the range by the specified amount.static RangeRange. shift(Range base, double delta, boolean allowZeroCrossing)Shifts the range by the specified amount.Methods in org.jfree.data with parameters of type Range Modifier and Type Method Description static RangeRange. combine(Range range1, Range range2)Creates a new range by combining two existing ranges.static RangeRange. combineIgnoringNaN(Range range1, Range range2)Returns a new range that spans bothrange1andrange2.static RangeRange. expand(Range range, double lowerMargin, double upperMargin)Creates a new range by adding margins to an existing range.static RangeRange. expandToInclude(Range range, double value)Returns a range that includes all the values in the specifiedrangeAND the specifiedvalue.booleanRange. intersects(Range range)Returnstrueif the range intersects with the specified range, andfalseotherwise.static RangeRange. scale(Range base, double factor)Scales the range by the specified factor.static RangeRange. shift(Range base, double delta)Shifts the range by the specified amount.static RangeRange. shift(Range base, double delta, boolean allowZeroCrossing)Shifts the range by the specified amount. -
Uses of Range in org.jfree.data.category
Methods in org.jfree.data.category that return Range Modifier and Type Method Description RangeCategoryRangeInfo. getRangeBounds(List visibleSeriesKeys, boolean includeInterval)Returns the range of the values in this dataset's range. -
Uses of Range in org.jfree.data.general
Methods in org.jfree.data.general that return Range Modifier and Type Method Description static RangeDatasetUtils. findCumulativeRangeBounds(CategoryDataset dataset)Calculates the range of values for a dataset where each item is the running total of the items for the current series.static RangeDatasetUtils. findDomainBounds(XYDataset dataset)Returns the range of values in the domain (x-values) of a dataset.static RangeDatasetUtils. findDomainBounds(XYDataset dataset, boolean includeInterval)Returns the range of values in the domain (x-values) of a dataset.static RangeDatasetUtils. findDomainBounds(XYDataset dataset, List visibleSeriesKeys, boolean includeInterval)Returns the bounds of the x-values in the specifieddatasettaking into account only the visible series and including any x-interval if requested.static RangeDatasetUtils. findRangeBounds(CategoryDataset dataset)Returns the range of values in the range for the dataset.static RangeDatasetUtils. findRangeBounds(CategoryDataset dataset, boolean includeInterval)Returns the range of values in the range for the dataset.static RangeDatasetUtils. findRangeBounds(CategoryDataset dataset, List visibleSeriesKeys, boolean includeInterval)Finds the bounds of the y-values in the specified dataset, including only those series that are listed in visibleSeriesKeys.static RangeDatasetUtils. findRangeBounds(XYDataset dataset)Returns the range of values in the range for the dataset.static RangeDatasetUtils. findRangeBounds(XYDataset dataset, boolean includeInterval)Returns the range of values in the range for the dataset.static RangeDatasetUtils. findRangeBounds(XYDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Finds the bounds of the y-values in the specified dataset, including only those series that are listed in visibleSeriesKeys, and those items whose x-values fall within the specified range.static RangeDatasetUtils. findStackedRangeBounds(CategoryDataset dataset)Returns the minimum and maximum values for the dataset's range (y-values), assuming that the series in one category are stacked.static RangeDatasetUtils. findStackedRangeBounds(CategoryDataset dataset, double base)Returns the minimum and maximum values for the dataset's range (y-values), assuming that the series in one category are stacked.static RangeDatasetUtils. findStackedRangeBounds(CategoryDataset dataset, KeyToGroupMap map)Returns the minimum and maximum values for the dataset's range (y-values), assuming that the series in one category are stacked.static RangeDatasetUtils. findStackedRangeBounds(TableXYDataset dataset)Returns the minimum and maximum values for the dataset's range, assuming that the series are stacked.static RangeDatasetUtils. findStackedRangeBounds(TableXYDataset dataset, double base)Returns the minimum and maximum values for the dataset's range, assuming that the series are stacked, using the specified base value.static RangeDatasetUtils. findZBounds(XYZDataset dataset)Returns the range of values in the z-dimension for the dataset.static RangeDatasetUtils. findZBounds(XYZDataset dataset, boolean includeInterval)Returns the range of values in the z-dimension for the dataset.static RangeDatasetUtils. findZBounds(XYZDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Finds the bounds of the z-values in the specified dataset, including only those series that are listed in visibleSeriesKeys, and those items whose x-values fall within the specified range.static RangeDatasetUtils. iterateDomainBounds(XYDataset dataset)Iterates over the items in anXYDatasetto find the range of x-values.static RangeDatasetUtils. iterateDomainBounds(XYDataset dataset, boolean includeInterval)Iterates over the items in anXYDatasetto find the range of x-values.static RangeDatasetUtils. iterateRangeBounds(CategoryDataset dataset)Iterates over the data item of the category dataset to find the range bounds.static RangeDatasetUtils. iterateRangeBounds(CategoryDataset dataset, boolean includeInterval)Iterates over the data item of the category dataset to find the range bounds.static RangeDatasetUtils. iterateRangeBounds(XYDataset dataset)Iterates over the data item of the xy dataset to find the range bounds.static RangeDatasetUtils. iterateRangeBounds(XYDataset dataset, boolean includeInterval)Iterates over the data items of the xy dataset to find the range bounds.static RangeDatasetUtils. iterateToFindDomainBounds(XYDataset dataset, List visibleSeriesKeys, boolean includeInterval)Returns the range of x-values in the specified dataset for the data items belonging to the visible series.static RangeDatasetUtils. iterateToFindRangeBounds(CategoryDataset dataset, List visibleSeriesKeys, boolean includeInterval)Iterates over the data item of the category dataset to find the range bounds.static RangeDatasetUtils. iterateToFindRangeBounds(XYDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of y-values in the specified dataset for the data items belonging to the visible series and with x-values in the given range.static RangeDatasetUtils. iterateToFindZBounds(XYZDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of z-values in the specified dataset for the data items belonging to the visible series and with x-values in the given range.static RangeDatasetUtils. iterateZBounds(XYZDataset dataset)Iterates over the data item of the xyz dataset to find the z-dimension bounds.static RangeDatasetUtils. iterateZBounds(XYZDataset dataset, boolean includeInterval)Iterates over the data items of the xyz dataset to find the z-dimension bounds.Methods in org.jfree.data.general with parameters of type Range Modifier and Type Method Description static RangeDatasetUtils. findRangeBounds(XYDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Finds the bounds of the y-values in the specified dataset, including only those series that are listed in visibleSeriesKeys, and those items whose x-values fall within the specified range.static RangeDatasetUtils. findZBounds(XYZDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Finds the bounds of the z-values in the specified dataset, including only those series that are listed in visibleSeriesKeys, and those items whose x-values fall within the specified range.static RangeDatasetUtils. iterateToFindRangeBounds(XYDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of y-values in the specified dataset for the data items belonging to the visible series and with x-values in the given range.static RangeDatasetUtils. iterateToFindZBounds(XYZDataset dataset, List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of z-values in the specified dataset for the data items belonging to the visible series and with x-values in the given range. -
Uses of Range in org.jfree.data.jdbc
Methods in org.jfree.data.jdbc that return Range Modifier and Type Method Description RangeJDBCXYDataset. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range. -
Uses of Range in org.jfree.data.statistics
Methods in org.jfree.data.statistics that return Range Modifier and Type Method Description RangeDefaultBoxAndWhiskerCategoryDataset. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range.RangeDefaultBoxAndWhiskerXYDataset. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range.RangeDefaultMultiValueCategoryDataset. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range.RangeDefaultStatisticalCategoryDataset. getRangeBounds(boolean includeInterval)Returns the bounds of the values in this dataset's y-values. -
Uses of Range in org.jfree.data.time
Subclasses of Range in org.jfree.data.time Modifier and Type Class Description classDateRangeA range specified in terms of twojava.util.Dateobjects.Methods in org.jfree.data.time that return Range Modifier and Type Method Description RangeTimeSeries. findValueRange()Returns the range of y-values in the time series.RangeTimeSeries. findValueRange(Range xRange, TimeZone timeZone)Returns the range of y-values in the time series that fall within the specified range of x-values.RangeTimeSeries. findValueRange(Range xRange, TimePeriodAnchor xAnchor, Calendar calendar)Finds the range of y-values that fall within the specified range of x-values (where the x-values are interpreted as milliseconds since the epoch and converted to time periods using the specified calendar).RangeTimeSeries. findValueRange(Range xRange, TimePeriodAnchor xAnchor, TimeZone zone)Finds the range of y-values that fall within the specified range of x-values (where the x-values are interpreted as milliseconds since the epoch and converted to time periods using the specified timezone).RangeDynamicTimeSeriesCollection. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeTimePeriodValuesCollection. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeTimeSeriesCollection. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeTimeSeriesCollection. getDomainBounds(List visibleSeriesKeys, boolean includeInterval)Returns the bounds of the domain values for the specified series.RangeTimeTableXYDataset. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeDynamicTimeSeriesCollection. getRangeBounds(boolean includeInterval)Returns the value range.RangeTimeSeriesCollection. getRangeBounds(boolean includeInterval)Returns the bounds for the y-values in the dataset.RangeTimeSeriesCollection. getRangeBounds(List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the bounds for the y-values in the dataset.Methods in org.jfree.data.time with parameters of type Range Modifier and Type Method Description RangeTimeSeries. findValueRange(Range xRange, TimeZone timeZone)Returns the range of y-values in the time series that fall within the specified range of x-values.RangeTimeSeries. findValueRange(Range xRange, TimePeriodAnchor xAnchor, Calendar calendar)Finds the range of y-values that fall within the specified range of x-values (where the x-values are interpreted as milliseconds since the epoch and converted to time periods using the specified calendar).RangeTimeSeries. findValueRange(Range xRange, TimePeriodAnchor xAnchor, TimeZone zone)Finds the range of y-values that fall within the specified range of x-values (where the x-values are interpreted as milliseconds since the epoch and converted to time periods using the specified timezone).RangeTimeSeriesCollection. getRangeBounds(List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the bounds for the y-values in the dataset.Constructors in org.jfree.data.time with parameters of type Range Constructor Description DateRange(Range other)Constructs a new range that is based on anotherRange. -
Uses of Range in org.jfree.data.xy
Methods in org.jfree.data.xy that return Range Modifier and Type Method Description RangeCategoryTableXYDataset. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeDefaultTableXYDataset. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeIntervalXYDelegate. getDomainBounds(boolean includeInterval)Returns the range of the values in the dataset's domain, including or excluding the interval around each x-value as specified.RangeXYDomainInfo. getDomainBounds(List visibleSeriesKeys, boolean includeInterval)Returns the range of the values in this dataset's domain.RangeXYSeriesCollection. getDomainBounds(boolean includeInterval)Returns the range of the values in this dataset's domain.RangeXYRangeInfo. getRangeBounds(List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of the values in this dataset's range.RangeXYSeriesCollection. getRangeBounds(boolean includeInterval)Returns the range of the values in this dataset's range.Methods in org.jfree.data.xy with parameters of type Range Modifier and Type Method Description RangeXYRangeInfo. getRangeBounds(List visibleSeriesKeys, Range xRange, boolean includeInterval)Returns the range of the values in this dataset's range.