Uses of Interface
org.jfree.data.xy.TableXYDataset
-
Packages that use TableXYDataset Package Description org.jfree.chart Core classes for JFreeChart includingJFreeChartandChartFactory.org.jfree.chart.renderer.xy Plug-in renderers for theXYPlotclass.org.jfree.data.general Data interfaces and classes.org.jfree.data.time Interfaces and classes for time-related data.org.jfree.data.xy A package containing theXYDatasetinterface and related classes. -
-
Uses of TableXYDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type TableXYDataset Modifier and Type Method Description static JFreeChartChartFactory. createStackedXYAreaChart(String title, String xAxisLabel, String yAxisLabel, TableXYDataset dataset)Creates a stacked XY area plot.static JFreeChartChartFactory. 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
Methods in org.jfree.chart.renderer.xy with parameters of type TableXYDataset Modifier and Type Method Description protected doubleStackedXYAreaRenderer. getPreviousHeight(TableXYDataset dataset, int series, int index)Calculates the stacked value of the all series up to, but not includingseriesfor the specified item. -
Uses of TableXYDataset in org.jfree.data.general
Methods in org.jfree.data.general with parameters of type TableXYDataset Modifier and Type Method Description static <S extends Comparable<S>>
doubleDatasetUtils. calculateStackTotal(TableXYDataset<S> dataset, int item)Calculates the total for the y-values in all series for a given item index.static <S extends Comparable<S>>
RangeDatasetUtils. findStackedRangeBounds(TableXYDataset<S> dataset)Returns the minimum and maximum values for the dataset's range, assuming that the series are stacked.static <S extends Comparable<S>>
RangeDatasetUtils. findStackedRangeBounds(TableXYDataset<S> 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.time
Classes in org.jfree.data.time that implement TableXYDataset Modifier and Type Class Description classTimeTableXYDatasetA dataset for regular time periods that implements theTableXYDatasetinterface. -
Uses of TableXYDataset in org.jfree.data.xy
Classes in org.jfree.data.xy that implement TableXYDataset Modifier and Type Class Description classCategoryTableXYDatasetAn implementation variant of theTableXYDatasetwhere every series shares the same x-values (required for generating stacked area charts).classDefaultTableXYDataset<S extends Comparable<S>>AnXYDatasetwhere every series shares the same x-values (required for generating stacked area charts).Methods in org.jfree.data.xy with parameters of type TableXYDataset Modifier and Type Method Description voidXYDatasetTableModel. setModel(TableXYDataset dataset)Sets the model (dataset).Constructors in org.jfree.data.xy with parameters of type TableXYDataset Constructor Description XYDatasetTableModel(TableXYDataset dataset)Creates a new table model based on the specified dataset.
-