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