Uses of Interface
org.jfree.data.XYDataset
Package | Description |
---|---|
de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics | |
org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel . |
org.jfree.chart.demo | |
org.jfree.chart.entity |
Classes representing components of (or entities in) a chart.
|
org.jfree.chart.labels |
Generators and other classes used for the display of item labels and tooltips.
|
org.jfree.chart.plot |
Plot classes and related interfaces.
|
org.jfree.chart.renderer |
Plug-in renderers for the
CategoryPlot and XYPlot classes. |
org.jfree.chart.urls |
Classes for adding URLS to charts for HTML image map generation.
|
org.jfree.data |
Data interfaces and classes.
|
org.jfree.data.statistics |
Classes for representing statistical data.
|
org.jfree.data.time |
Interfaces and classes for time-related data.
|
-
Uses of XYDataset in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics
Classes in de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.statistics that implement XYDataset Modifier and Type Class Description class
MyXML_XYDataset
-
Uses of XYDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type XYDataset Modifier and Type Method Description static JFreeChart
ChartFactory. createAreaXYChart(String title, String xAxisLabel, String yAxisLabel, XYDataset data, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Deprecated.Use createXYAreaChart(...).static JFreeChart
ChartFactory. createLineXYChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Deprecated.Use createXYLineChart(...).static JFreeChart
ChartFactory. createPolarChart(String title, XYDataset dataset, boolean legend, boolean tooltips, boolean urls)
Creates a polar plot for the specified dataset (x-values interpreted as angles in degrees).static JFreeChart
ChartFactory. createScatterPlot(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Creates a scatter plot with default settings.static JFreeChart
ChartFactory. createTimeSeriesChart(String title, String timeAxisLabel, String valueAxisLabel, XYDataset dataset, boolean legend, boolean tooltips, boolean urls)
Creates and returns a time series chart.static JFreeChart
ChartFactory. createXYAreaChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Creates an area chart using anXYDataset
.static JFreeChart
ChartFactory. createXYLineChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Creates a line chart (based on anXYDataset
) with default settings.static JFreeChart
ChartFactory. createXYStepAreaChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Creates a filled stepped XY plot with default settings.static JFreeChart
ChartFactory. createXYStepChart(String title, String xAxisLabel, String yAxisLabel, XYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls)
Creates a stepped XY plot with default settings. -
Uses of XYDataset in org.jfree.chart.demo
Classes in org.jfree.chart.demo that implement XYDataset Modifier and Type Class Description class
EmptyXYDataset
An empty dataset for testing purposes.class
SampleSignalDataset
A sample signal dataset.class
SampleXYDataset
A dummy dataset for an XY plot.class
SampleXYDataset2
Random data for a scatter plot demo.class
SampleXYSymbolicDataset
Random data for a symbolic plot demo.class
SampleXYZDataset
A quick-and-dirty implementation of theinterface
.class
SampleYSymbolicDataset
A dataset implementation that provides random data for a symbolic plot demo.class
SimpleIntervalXYDataset
A quick and dirty sample dataset.class
SimpleIntervalXYDataset2
A quick and dirty sample dataset.Methods in org.jfree.chart.demo that return XYDataset Modifier and Type Method Description XYDataset
MovingAverageDemo. createDataset()
Creates a dataset, one series containing unit trust prices, the other a moving average.XYDataset
SymbolicChartDemo1. createDataset()
Creates a dataset, consisting of two series of monthly data.XYDataset
TimePeriodValuesDemo2. createDataset()
Creates a dataset, consisting of two series of monthly data.XYDataset
TimePeriodValuesDemo3. createDataset()
Creates a dataset, consisting of two series of monthly data.XYDataset
TimeSeriesDemo6. createDataset()
Creates a dataset, consisting of two series of monthly data.XYDataset
TimeSeriesDemo9. createDataset()
Creates a sample dataset.XYDataset
TimePeriodValuesDemo. createDataset1()
Creates a dataset, consisting of two series of monthly data.XYDataset
TimePeriodValuesDemo. createDataset2()
Creates a dataset, consisting of two series of monthly data.static XYDataset
DemoDatasetFactory. createSampleXYDataset()
Returns a sample XY dataset.static XYDataset
XYStepChartDemo. createStepXYDataset()
Creates and returns a sample dataset for the XY 'Step' chart.Methods in org.jfree.chart.demo with parameters of type XYDataset Modifier and Type Method Description static JFreeChart
SymbolicXYPlotDemo. createXYSymbolicPlot(String title, String xAxisLabel, String yAxisLabel, XYDataset data, boolean legend)
Creates a XY graph with symbolic value on X and Y axis.static JFreeChart
SymbolicYPlotDemo. createYSymbolicPlot(String title, String xAxisLabel, String yAxisLabel, XYDataset data, boolean legend)
Creates a XY graph with symbolic value on Y axis. -
Uses of XYDataset in org.jfree.chart.entity
Methods in org.jfree.chart.entity that return XYDataset Modifier and Type Method Description XYDataset
XYItemEntity. getDataset()
Returns the dataset this entity refers to.Methods in org.jfree.chart.entity with parameters of type XYDataset Modifier and Type Method Description void
XYItemEntity. setDataset(XYDataset dataset)
Sets the dataset this entity refers to.Constructors in org.jfree.chart.entity with parameters of type XYDataset Constructor Description XYItemEntity(Shape area, XYDataset dataset, int series, int item, String toolTipText, String urlText)
Creates a new entity. -
Uses of XYDataset in org.jfree.chart.labels
Methods in org.jfree.chart.labels with parameters of type XYDataset Modifier and Type Method Description String
HighLowItemLabelGenerator. generateLabel(XYDataset dataset, int series, int category)
Generates a label for the specified item.String
StandardXYLabelGenerator. generateLabel(XYDataset dataset, int series, int item)
Generates the item label text for an item in a dataset.String
SymbolicXYItemLabelGenerator. generateLabel(XYDataset dataset, int series, int category)
Generates a label for the specified item.String
XYLabelGenerator. generateLabel(XYDataset dataset, int series, int item)
Generates a label for the specified item.String
AbstractXYItemLabelGenerator. generateLabelString(XYDataset dataset, int series, int item)
Generates a label string for an item in the dataset.String
CustomXYToolTipGenerator. generateToolTip(XYDataset data, int series, int item)
Generates a tool tip text item for a particular item within a series.String
HighLowItemLabelGenerator. generateToolTip(XYDataset dataset, int series, int item)
Generates a tooltip text item for a particular item within a series.String
StandardXYToolTipGenerator. generateToolTip(XYDataset dataset, int series, int item)
Generates the tool tip text for an item in a dataset.String
SymbolicXYItemLabelGenerator. generateToolTip(XYDataset data, int series, int item)
Generates a tool tip text item for a particular item within a series.String
XYToolTipGenerator. generateToolTip(XYDataset dataset, int series, int item)
Generates the tooltip text for the specified item. -
Uses of XYDataset in org.jfree.chart.plot
Methods in org.jfree.chart.plot that return XYDataset Modifier and Type Method Description XYDataset
PolarPlot. getDataset()
Returns the primary dataset for the plot.XYDataset
XYPlot. getDataset()
Returns the primary dataset for the plot.XYDataset
XYPlot. getDataset(int index)
Returns a dataset.Methods in org.jfree.chart.plot with parameters of type XYDataset Modifier and Type Method Description XYItemRenderer
XYPlot. getRendererForDataset(XYDataset dataset)
Returns the renderer for the specified dataset.int
XYPlot. indexOf(XYDataset dataset)
Returns the index of the specified dataset, or-1
if the dataset does not belong to the plot.void
PolarPlot. setDataset(XYDataset dataset)
Sets the dataset for the plot, replacing the existing dataset if there is one.void
XYPlot. setDataset(int index, XYDataset dataset)
Sets a dataset for the plot.void
XYPlot. setDataset(XYDataset dataset)
Sets the primary dataset for the plot, replacing the existing dataset if there is one.Constructors in org.jfree.chart.plot with parameters of type XYDataset Constructor Description PolarPlot(XYDataset dataset, ValueAxis radiusAxis, PolarItemRenderer renderer)
Creates a new plot.XYPlot(XYDataset dataset, ValueAxis domainAxis, ValueAxis rangeAxis, XYItemRenderer renderer)
Creates a new plot. -
Uses of XYDataset in org.jfree.chart.renderer
Methods in org.jfree.chart.renderer with parameters of type XYDataset Modifier and Type Method Description void
XYBoxAndWhiskerRenderer. drawHorizontalItem(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
AreaXYRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Deprecated.Draws the visual representation of a single data item.void
CandlestickRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
ClusteredXYBarRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
CyclicXYItemRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
HighLowRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
SignalRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis horizontalAxis, ValueAxis verticalAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
StackedXYAreaRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
StackedXYAreaRenderer2. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
StackedXYBarRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
StandardXYItemRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
WindItemRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D plotArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYAreaRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYAreaRenderer2. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYBarRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYBoxAndWhiskerRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYBubbleRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYDifferenceRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYDotRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYItemRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Called for each item to be plotted.void
XYLineAndShapeRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYStepAreaRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
XYStepRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
YIntervalRenderer. drawItem(Graphics2D g2, XYItemRendererState state, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.void
DefaultPolarItemRenderer. drawSeries(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, PolarPlot plot, XYDataset dataset, int seriesIndex)
Plots the data for a given series.void
PolarItemRenderer. drawSeries(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, PolarPlot plot, XYDataset dataset, int seriesIndex)
Plots the data for a given series.void
XYBoxAndWhiskerRenderer. drawVerticalItem(Graphics2D g2, Rectangle2D dataArea, PlotRenderingInfo info, XYPlot plot, ValueAxis domainAxis, ValueAxis rangeAxis, XYDataset dataset, int series, int item, CrosshairState crosshairState, int pass)
Draws the visual representation of a single data item.Range
AbstractXYItemRenderer. getRangeExtent(XYDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.Range
StackedXYAreaRenderer. getRangeExtent(XYDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.Range
StackedXYAreaRenderer2. getRangeExtent(XYDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.Range
StackedXYBarRenderer. getRangeExtent(XYDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.Range
XYItemRenderer. getRangeExtent(XYDataset dataset)
Returns the range of values the renderer requires to display all the items from the specified dataset.XYItemRendererState
AbstractXYItemRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer and returns a state object that should be passed to all subsequent calls to the drawItem() method.XYItemRendererState
AreaXYRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Deprecated.Initialises the renderer and returns a state object that should be passed to all subsequent calls to the drawItem(...) method.XYItemRendererState
CandlestickRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset dataset, PlotRenderingInfo info)
Initialises the renderer then returns the number of 'passes' through the data that the renderer will require (usually just one).XYItemRendererState
ClusteredXYBarRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer.XYItemRendererState
StackedXYAreaRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer.XYItemRendererState
StackedXYBarRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer and returns a state object that should be passed to all subsequent calls to the drawItem() method.XYItemRendererState
XYAreaRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer and returns a state object that should be passed to all subsequent calls to the drawItem(...) method.XYItemRendererState
XYBarRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset dataset, PlotRenderingInfo info)
Initialises the renderer and returns a state object that should be passed to all subsequent calls to the drawItem() method.XYItemRendererState
XYDifferenceRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer and returns a state object that should be passed to subsequent calls to the drawItem() method.XYItemRendererState
XYItemRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset dataset, PlotRenderingInfo info)
Initialises the renderer then returns the number of 'passes' through the data that the renderer will require (usually just one).XYItemRendererState
XYLineAndShapeRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer.XYItemRendererState
XYStepAreaRenderer. initialise(Graphics2D g2, Rectangle2D dataArea, XYPlot plot, XYDataset data, PlotRenderingInfo info)
Initialises the renderer. -
Uses of XYDataset in org.jfree.chart.urls
Methods in org.jfree.chart.urls with parameters of type XYDataset Modifier and Type Method Description String
CustomXYURLGenerator. generateURL(XYDataset data, int series, int item)
Generates a URL.String
StandardXYURLGenerator. generateURL(XYDataset dataset, int series, int item)
Generates a URL for a particular item within a series.String
TimeSeriesURLGenerator. generateURL(XYDataset dataset, int series, int item)
Generates a URL for a particular item within a series.String
XYURLGenerator. generateURL(XYDataset data, int series, int item)
Generates a URL for a particular item within a series. -
Uses of XYDataset in org.jfree.data
Subinterfaces of XYDataset in org.jfree.data Modifier and Type Interface Description interface
ContourDataset
The interface through which JFreeChart obtains data in the form of (x, y, z) items - used for XY and XYZ plots.interface
HighLowDataset
An interface that defines data in the form of (x, high, low, open, close) tuples.interface
IntervalXYDataset
An extension of theXYDataset
interface that allows a range of data to be defined for the X values, the Y values, or both the X and Y values.interface
IntervalXYZDataset
An extension of theXYZDataset
interface that allows a range of data to be defined for any of the X values, the Y values, and the Z values.interface
SignalsDataset
An interface that adds signal information to anXYDataset
.interface
TableXYDataset
A dataset containing one or more data series containing (x, y) data items, where all series in the dataset share the same set of x-values.interface
WindDataset
Interface for a dataset that supplies wind intensity and direction values observed at various points in time.interface
XYZDataset
The interface through which JFreeChart obtains data in the form of (x, y, z) items - used for XY and XYZ plots.Classes in org.jfree.data that implement XYDataset Modifier and Type Class Description class
AbstractIntervalXYDataset
An base class that you can use to create new implementations of theXYDataset
interface.class
AbstractXYDataset
An base class that you can use to create new implementations of theXYDataset
interface.class
AbstractXYZDataset
An base class that you can use to create new implementations of theXYZDataset
interface.class
CategoryTableXYDataset
An implementation variant of theTableXYDataset
where every series shares the same x-values (required for generating stacked area charts).class
CombinedDataset
This class can combine instances ofXYDataset
,HighLowDataset
andIntervalXYDataset
together exposing the union of all the series under one dataset.class
DefaultContourDataset
A convenience class that provides a default implementation of theContourDataset
interface.class
DefaultHighLowDataset
A simple implementation of theHighLowDataset
.class
DefaultTableXYDataset
AnXYDataset
where every series shares the same x-values (required for generating stacked area charts).class
DefaultWindDataset
A default implementation of theWindDataset
interface.class
JDBCXYDataset
This class provides anXYDataset
implementation over a database JDBC result set.class
MatrixSeriesCollection
Represents a collection ofMatrixSeries
that can be used as a dataset.class
NonGridContourDataset
A convenience class that extends theDefaultContourDataset
to acommadate non-grid data.class
OHLCDataset
A simple implementation of theHighLowDataset
interface.class
SubSeriesDataset
This class will create a dataset with one or more series from anotherSeriesDataset
.class
XYBarDataset
A dataset wrapper class that converts a standardXYDataset
into anIntervalXYDataset
suitable for use in creating XY bar charts.class
XYSeriesCollection
Represents a collection ofXYSeries
objects that can be used as a dataset.Methods in org.jfree.data that return XYDataset Modifier and Type Method Description static XYDataset
MovingAverage. createMovingAverage(XYDataset source, String suffix, double period, double skip)
Creates a newXYDataset
containing the moving averages of each series in thesource
dataset.static XYDataset
MovingAverage. createMovingAverage(XYDataset source, String suffix, long period, long skip)
Creates a newXYDataset
containing the moving averages of each series in thesource
dataset.static XYDataset
DatasetUtilities. sampleFunction2D(Function2D f, double start, double end, int samples, String seriesName)
Creates anXYDataset
by sampling the specified function over a fixed range.Methods in org.jfree.data with parameters of type XYDataset Modifier and Type Method Description static XYSeries
MovingAverage. createMovingAverage(XYDataset source, int series, String name, double period, double skip)
Creates a newXYSeries
containing the moving averages of one series in thesource
dataset.static XYSeries
MovingAverage. createMovingAverage(XYDataset source, int series, String name, long period, long skip)
Deprecated.Use similar method with 'double' parameters.static XYDataset
MovingAverage. createMovingAverage(XYDataset source, String suffix, double period, double skip)
Creates a newXYDataset
containing the moving averages of each series in thesource
dataset.static XYDataset
MovingAverage. createMovingAverage(XYDataset source, String suffix, long period, long skip)
Creates a newXYDataset
containing the moving averages of each series in thesource
dataset.static double[]
Regression. getOLSRegression(XYDataset data, int series)
Returns the parameters 'a' and 'b' for an equation y = a + bx, fitted to the data using ordinary least squares regression.static double[]
Regression. getPowerRegression(XYDataset data, int series)
Returns the parameters 'a' and 'b' for an equation y = ax^b, fitted to the data using a power regression equation.static boolean
DatasetUtilities. isEmptyOrNull(XYDataset data)
Returnstrue
if the dataset is empty (ornull
), andfalse
otherwise.static Range
DatasetUtilities. iterateDomainExtent(XYDataset data)
Iterates over the data item of the xy dataset to find the domain extent.static Range
DatasetUtilities. iterateXYRangeExtent(XYDataset data)
Iterates over the data item of the xy dataset to find the range extent.void
XYDatasetTableModel. setModel(XYDataset dataset)
Sets the model (dataset).Constructors in org.jfree.data with parameters of type XYDataset Constructor Description XYBarDataset(XYDataset underlying, double barWidth)
Creates a new dataset.XYDatasetTableModel(XYDataset dataset)
Creates a new table model based on the specified dataset. -
Uses of XYDataset in org.jfree.data.statistics
Subinterfaces of XYDataset in org.jfree.data.statistics Modifier and Type Interface Description interface
BoxAndWhiskerXYDataset
An interface that defines data in the form of (x, max, min, average, median) tuples.Classes in org.jfree.data.statistics that implement XYDataset Modifier and Type Class Description class
DefaultBoxAndWhiskerXYDataset
A simple implementation of theBoxAndWhiskerXYDataset
.class
HistogramDataset
A dataset that can be used for creating histograms. -
Uses of XYDataset in org.jfree.data.time
Classes in org.jfree.data.time that implement XYDataset Modifier and Type Class Description class
DynamicTimeSeriesCollection
A dynamic dataset.class
TimePeriodValuesCollection
A collection ofTimePeriodValues
objects.class
TimeSeriesCollection
A collection of time series objects.class
TimeTableXYDataset
A dataset for regular time periods that implements the TableXYDataset interface.