|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Range | |
com.jrefinery.chart | The main classes in the JFreeChart class library. |
com.jrefinery.chart.demo | Demonstration applications for the JFreeChart class library. |
com.jrefinery.data | Data interfaces and classes. |
Uses of Range in com.jrefinery.chart |
Fields in com.jrefinery.chart declared as Range | |
static Range |
ValueAxis.DEFAULT_RANGE
The default axis range. |
Methods in com.jrefinery.chart that return Range | |
Range |
ValueAxis.getRange()
Returns the range for the axis. |
Range |
ThermometerPlot.getVerticalDataRange()
Returns the vertical data range. |
Range |
VerticalValuePlot.getVerticalDataRange()
Returns the range for the data to be plotted against the vertical axis. |
Range |
XYPlot.getHorizontalDataRange()
Returns the range for the horizontal axis. |
Range |
XYPlot.getVerticalDataRange()
Returns the range for the vertical axis. |
Range |
CombinedXYPlot.getHorizontalDataRange()
Returns the range for the horizontal axis. |
Range |
CombinedXYPlot.getVerticalDataRange()
Returns the range for the vertical axis. |
Range |
OverlaidXYPlot.getHorizontalDataRange()
Returns the horizontal (x-axis) data range. |
Range |
OverlaidXYPlot.getVerticalDataRange()
Returns the vertical (y-axis) data range. |
Range |
HorizontalValuePlot.getHorizontalDataRange()
Returns the range of data values to be plotted along the horizontal axis. |
Range |
VerticalCategoryPlot.getVerticalDataRange()
Returns the range of data values that will be plotted against the range axis. |
Range |
OverlaidVerticalCategoryPlot.getVerticalDataRange()
Returns the range of data values that will be plotted against the range axis. |
Range |
PeriodMarkerPlot.getVerticalDataRange()
Returns the range for the vertical axis. |
Range |
HorizontalCategoryPlot.getHorizontalDataRange()
Returns the data range for the horizontal axis. |
Methods in com.jrefinery.chart with parameters of type Range | |
void |
ValueAxis.setRange(Range range)
Sets the upper and lower bounds for the axis. |
protected void |
ValueAxis.setRangeAttribute(Range range)
Sets the range attribute without any other side effects. |
void |
DateAxis.setRange(Range range)
Sets the upper and lower bounds for the axis. |
void |
HorizontalLogarithmicAxis.setRange(Range range)
Overridden version that calls original and then sets up flag for log axis processing. |
void |
VerticalLogarithmicAxis.setRange(Range range)
Overridden version that calls original and then sets up flag for log axis processing. |
Constructors in com.jrefinery.chart with parameters of type Range | |
ValueAxis(java.lang.String label,
java.awt.Font labelFont,
java.awt.Paint labelPaint,
java.awt.Insets labelInsets,
boolean tickLabelsVisible,
java.awt.Font tickLabelFont,
java.awt.Paint tickLabelPaint,
java.awt.Insets tickLabelInsets,
boolean tickMarksVisible,
java.awt.Stroke tickMarkStroke,
java.awt.Paint tickMarkPaint,
Range range,
boolean autoRange,
java.lang.Number autoRangeMinimumSize,
boolean autoTickUnitSelection,
TickUnits standardTickUnits,
boolean gridLinesVisible,
java.awt.Stroke gridStroke,
java.awt.Paint gridPaint,
double anchorValue,
boolean crosshairVisible,
double crosshairValue,
java.awt.Stroke crosshairStroke,
java.awt.Paint crosshairPaint)
Constructs a value axis. |
|
DateAxis(java.lang.String label,
java.awt.Font labelFont,
java.awt.Paint labelPaint,
java.awt.Insets labelInsets,
boolean tickLabelsVisible,
java.awt.Font tickLabelFont,
java.awt.Paint tickLabelPaint,
java.awt.Insets tickLabelInsets,
boolean tickMarksVisible,
java.awt.Stroke tickMarkStroke,
java.awt.Paint tickMarkPaint,
boolean autoRange,
java.lang.Number autoRangeMinimumSize,
Range range,
boolean autoTickUnitSelection,
TickUnits standardTickUnits,
DateTickUnit tickUnit,
java.text.SimpleDateFormat tickLabelFormatter,
boolean gridLinesVisible,
java.awt.Stroke gridStroke,
java.awt.Paint gridPaint,
java.util.Date anchorDate,
boolean crosshairVisible,
java.util.Date crosshairDate,
java.awt.Stroke crosshairStroke,
java.awt.Paint crosshairPaint)
Constructs a date axis. |
|
HorizontalDateAxis(java.lang.String label,
java.awt.Font labelFont,
Range range)
Constructs a new date axis, using default attribute values where necessary. |
|
HorizontalDateAxis(java.lang.String label,
java.awt.Font labelFont,
java.awt.Paint labelPaint,
java.awt.Insets labelInsets,
boolean showTickLabels,
java.awt.Font tickLabelFont,
java.awt.Paint tickLabelPaint,
java.awt.Insets tickLabelInsets,
boolean verticalTickLabels,
boolean showTickMarks,
java.awt.Stroke tickMarkStroke,
java.awt.Paint tickMarkPaint,
boolean autoRange,
java.lang.Number autoRangeMinimumSize,
Range range,
boolean autoTickUnitSelection,
TickUnits standardTickUnits,
DateTickUnit tickUnit,
java.text.SimpleDateFormat tickLabelFormatter,
boolean gridVisible,
java.awt.Stroke gridStroke,
java.awt.Paint gridPaint,
java.util.Date anchorDate,
boolean crosshairVisible,
java.util.Date crosshairDate,
java.awt.Stroke crosshairStroke,
java.awt.Paint crosshairPaint)
Constructs a new date axis. |
Uses of Range in com.jrefinery.chart.demo |
Methods in com.jrefinery.chart.demo that return Range | |
Range |
SampleXYDataset2.getDomainRange()
Returns the range of values in the domain. |
Range |
SampleXYDataset2.getValueRange()
Returns the range of values in the range (y-values). |
Uses of Range in com.jrefinery.data |
Subclasses of Range in com.jrefinery.data | |
class |
DateRange
An axis range specified in terms of two java.util.Date objects. |
Methods in com.jrefinery.data that return Range | |
static Range |
Range.combine(Range range1,
Range range2)
Creates a new range by combining two existing ranges. |
Range |
DomainInfo.getDomainRange()
Returns the range of the values in this dataset's domain. |
Range |
TimeSeriesCollection.getDomainRange()
Returns the range of the values in the series domain. |
static Range |
DatasetUtilities.getDomainExtent(Dataset data)
Returns the range of values in the domain for the dataset. |
static Range |
DatasetUtilities.getRangeExtent(Dataset data)
Returns the range of values in the range for the dataset. |
static Range |
DatasetUtilities.getStackedRangeExtent(CategoryDataset data)
Returns the range of values for the range (as in domain/range) of the dataset, assuming that the series in one category are stacked. |
Range |
JdbcXYDataset.getValueRange()
Returns the range of the values in this dataset's range (y-values). |
Range |
RangeInfo.getValueRange()
Returns the range of the values in this dataset's range. |
Methods in com.jrefinery.data with parameters of type Range | |
static Range |
Range.combine(Range range1,
Range range2)
Creates a new range by combining two existing ranges. |
Constructors in com.jrefinery.data with parameters of type Range | |
DateRange(Range other)
Constructs a new DateAxisRange based on another range. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |