Uses of Interface
org.jfree.data.DatasetChangeListener
Package | Description |
---|---|
org.jfree.chart.demo | |
org.jfree.chart.plot |
Plot classes and related interfaces.
|
org.jfree.data |
Data interfaces and classes.
|
-
Uses of DatasetChangeListener in org.jfree.chart.demo
Methods in org.jfree.chart.demo with parameters of type DatasetChangeListener Modifier and Type Method Description void
SampleSignalDataset. addChangeListener(DatasetChangeListener listener)
Registers an object to receive notification of changes to the dataset.void
SimpleIntervalXYDataset. addChangeListener(DatasetChangeListener listener)
Registers an object for notification of changes to the dataset.void
SimpleIntervalXYDataset2. addChangeListener(DatasetChangeListener listener)
Registers an object for notification of changes to the dataset.void
SampleSignalDataset. removeChangeListener(DatasetChangeListener listener)
Deregisters an object so that it no longer receives notification of changes to the dataset.void
SimpleIntervalXYDataset. removeChangeListener(DatasetChangeListener listener)
Deregisters an object for notification of changes to the dataset.void
SimpleIntervalXYDataset2. removeChangeListener(DatasetChangeListener listener)
Deregisters an object for notification of changes to the dataset. -
Uses of DatasetChangeListener in org.jfree.chart.plot
Classes in org.jfree.chart.plot that implement DatasetChangeListener Modifier and Type Class Description class
CategoryPlot
A general plotting class that uses data from aCategoryDataset
and renders each data item using aCategoryItemRenderer
.class
CombinedDomainCategoryPlot
A combined category plot where the domain axis is shared.class
CombinedDomainXYPlot
An extension ofXYPlot
that contains multiple subplots that share a common domain axis.class
CombinedRangeCategoryPlot
A combined category plot where the range axis is shared.class
CombinedRangeXYPlot
An extension ofXYPlot
that contains multiple subplots that share a common range axis.class
CompassPlot
A specialised plot that draws a compass to indicate a direction based on the value from aValueDataset
.class
ContourPlot
A class for creating shaded contours.class
FastScatterPlot
A fast scatter plot.class
MeterPlot
A plot that displays a single value in the context of several ranges ('normal', 'warning' and 'critical').class
MultiplePiePlot
A plot that displays multiple pie plots using data from aCategoryDataset
.class
PiePlot
A plot that displays data in the form of a pie chart, using data from any class that implements thePieDataset
interface.class
PiePlot3D
A plot that displays data in the form of a 3D pie chart, using data from any class that implements thePieDataset
interface.class
Plot
The base class for all plots in JFreeChart.class
PolarPlot
Plots data that is in (theta, radius) pairs where theta equal to zero is due north and and increases clockwise.class
ThermometerPlot
A plot that displays a single value (from aValueDataset
) in a thermometer type display.class
WaferMapPlot
A wafer map plot.class
XYPlot
A general class for plotting data in the form of (x, y) pairs. -
Uses of DatasetChangeListener in org.jfree.data
Classes in org.jfree.data that implement DatasetChangeListener Modifier and Type Class Description class
CategoryToPieDataset
APieDataset
implementation that obtains its data from one row or column of aCategoryDataset
.class
XYBarDataset
A dataset wrapper class that converts a standardXYDataset
into anIntervalXYDataset
suitable for use in creating XY bar charts.class
XYDatasetTableModel
A READ-ONLY wrapper around anXYDataset
to convert it to a table model for use in a JTable.Methods in org.jfree.data with parameters of type DatasetChangeListener Modifier and Type Method Description void
AbstractDataset. addChangeListener(DatasetChangeListener listener)
Registers an object to receive notification of changes to the dataset.void
Dataset. addChangeListener(DatasetChangeListener listener)
Registers an object for notification of changes to the dataset.void
AbstractDataset. removeChangeListener(DatasetChangeListener listener)
Deregisters an object so that it no longer receives notification of changes to the dataset.void
Dataset. removeChangeListener(DatasetChangeListener listener)
Deregisters an object for notification of changes to the dataset.