Uses of Interface
org.jfree.data.xy.TableXYDataset
Package
Description
Core classes, including
JFreeChart
and
ChartPanel
.Plug-in renderers for the
XYPlot
class.Data interfaces and classes.
Dataset classes that fetch data from a database via JDBC.
Interfaces and classes for time-related data.
A package containing the
XYDataset
interface and related classes.-
Uses of TableXYDataset in org.jfree.chart
Modifier and TypeMethodDescriptionstatic JFreeChart
ChartFactory.createStackedXYAreaChart
(String title, String xAxisLabel, String yAxisLabel, TableXYDataset dataset) Creates a stacked XY area plot.static JFreeChart
ChartFactory.createStackedXYAreaChart
(String title, String xAxisLabel, String yAxisLabel, TableXYDataset dataset, PlotOrientation orientation, boolean legend, boolean tooltips, boolean urls) Creates a stacked XY area plot. -
Uses of TableXYDataset in org.jfree.chart.renderer.xy
Modifier and TypeMethodDescriptionprotected double
StackedXYAreaRenderer.getPreviousHeight
(TableXYDataset dataset, int series, int index) Calculates the stacked value of the all series up to, but not includingseries
for the specified item. -
Uses of TableXYDataset in org.jfree.data.general
Modifier and TypeMethodDescriptionstatic double
DatasetUtils.calculateStackTotal
(TableXYDataset dataset, int item) Calculates the total for the y-values in all series for a given item index.static Range
DatasetUtils.findStackedRangeBounds
(TableXYDataset dataset) Returns the minimum and maximum values for the dataset's range, assuming that the series are stacked.static Range
DatasetUtils.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. -
Uses of TableXYDataset in org.jfree.data.jdbc
Modifier and TypeClassDescriptionclass
This class provides anXYDataset
implementation over a database JDBC result set. -
Uses of TableXYDataset in org.jfree.data.time
Modifier and TypeClassDescriptionclass
A dataset for regular time periods that implements theTableXYDataset
interface. -
Uses of TableXYDataset in org.jfree.data.xy
Modifier and TypeClassDescriptionclass
An implementation variant of theTableXYDataset
where every series shares the same x-values (required for generating stacked area charts).class
AnXYDataset
where every series shares the same x-values (required for generating stacked area charts).Modifier and TypeMethodDescriptionvoid
XYDatasetTableModel.setModel
(TableXYDataset dataset) Sets the model (dataset).ModifierConstructorDescriptionXYDatasetTableModel
(TableXYDataset dataset) Creates a new table model based on the specified dataset.