| org.jfree.data.xy.IntervalXYDataset
All known Subclasses: org.jfree.data.time.TimePeriodValuesCollection, org.jfree.data.statistics.HistogramDataset, org.jfree.data.xy.YIntervalSeriesCollection, org.jfree.data.general.SubSeriesDataset, org.jfree.data.xy.XIntervalSeriesCollection, org.jfree.data.statistics.SimpleHistogramDataset, org.jfree.data.xy.XYSeriesCollection, org.jfree.data.xy.AbstractIntervalXYDataset, org.jfree.data.xy.DefaultTableXYDataset, org.jfree.data.time.TimeSeriesCollection, org.jfree.data.time.TimeTableXYDataset, org.jfree.data.xy.XYIntervalSeriesCollection, org.jfree.data.time.DynamicTimeSeriesCollection, org.jfree.data.xy.XYBarDataset, org.jfree.data.general.CombinedDataset, org.jfree.data.xy.CategoryTableXYDataset,
IntervalXYDataset | public interface IntervalXYDataset extends XYDataset(Code) | | An extension of the
XYDataset interface that allows a range of data
to be defined for the X values, the Y values, or both the X and Y values.
This interface is used to support (among other things) bar plots against
numerical axes.
|
Method Summary | |
public Number | getEndX(int series, int item) Returns the ending X value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public double | getEndXValue(int series, int item) Returns the end x-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public Number | getEndY(int series, int item) Returns the ending Y value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public double | getEndYValue(int series, int item) Returns the end y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public Number | getStartX(int series, int item) Returns the starting X value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public double | getStartXValue(int series, int item) Returns the start x-value (as a double primitive) for an item within a
series.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). | public Number | getStartY(int series, int item) Returns the starting Y value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). | public double | getStartYValue(int series, int item) Returns the start y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). |
getEndX | public Number getEndX(int series, int item)(Code) | | Returns the ending X value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The value. |
getEndXValue | public double getEndXValue(int series, int item)(Code) | | Returns the end x-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The end x-value. |
getEndY | public Number getEndY(int series, int item)(Code) | | Returns the ending Y value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The value. |
getEndYValue | public double getEndYValue(int series, int item)(Code) | | Returns the end y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The end y-value. |
getStartX | public Number getStartX(int series, int item)(Code) | | Returns the starting X value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The value. |
getStartXValue | public double getStartXValue(int series, int item)(Code) | | Returns the start x-value (as a double primitive) for an item within a
series.
Parameters: series - the series (zero-based index). Parameters: item - the item (zero-based index). The start x-value. |
getStartY | public Number getStartY(int series, int item)(Code) | | Returns the starting Y value for the specified series and item.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The value. |
getStartYValue | public double getStartYValue(int series, int item)(Code) | | Returns the start y-value (as a double primitive) for an item within a
series.
Parameters: series - the series index (zero-based). Parameters: item - the item index (zero-based). The start y-value. |
|
|