Uses of Interface
org.jfree.chart.event.AxisChangeListener
-
Packages that use AxisChangeListener Package Description org.jfree.chart.axis Axis classes and interfaces.org.jfree.chart.plot Plot classes and related interfaces.org.jfree.chart.plot.dial Classes for creating dial plots.org.jfree.chart.plot.flow Classes for creating flow plots (a type of Sankey chart).org.jfree.chart.title Classes used to display chart titles and subtitles. -
-
Uses of AxisChangeListener in org.jfree.chart.axis
Methods in org.jfree.chart.axis with parameters of type AxisChangeListener Modifier and Type Method Description void
Axis. addChangeListener(AxisChangeListener listener)
Registers an object for notification of changes to the axis.void
Axis. removeChangeListener(AxisChangeListener listener)
Deregisters an object for notification of changes to the axis. -
Uses of AxisChangeListener in org.jfree.chart.plot
Classes in org.jfree.chart.plot that implement AxisChangeListener 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
FastScatterPlot
A fast scatter plot.class
MeterPlot
A plot that displays a single value in the form of a needle on a dial.class
MultiplePiePlot
A plot that displays multiple pie plots using data from aCategoryDataset
.class
PiePlot<K extends java.lang.Comparable<K>>
A plot that displays data in the form of a pie chart, using data from any class that implements thePieDataset
interface.class
PiePlot3D
Deprecated.For 3D pie charts, use Orson Charts (https://github.com/jfree/orson-charts).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 increases clockwise.class
RingPlot
A customised pie plot that leaves a hole in the middle.class
SpiderWebPlot
A plot that displays data from aCategoryDataset
in the form of a "spider web".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 AxisChangeListener in org.jfree.chart.plot.dial
Classes in org.jfree.chart.plot.dial that implement AxisChangeListener Modifier and Type Class Description class
DialPlot
A dial plot composed of user-definable layers. -
Uses of AxisChangeListener in org.jfree.chart.plot.flow
Classes in org.jfree.chart.plot.flow that implement AxisChangeListener Modifier and Type Class Description class
FlowPlot
A plot for visualising flows defined in aFlowDataset
. -
Uses of AxisChangeListener in org.jfree.chart.title
Classes in org.jfree.chart.title that implement AxisChangeListener Modifier and Type Class Description class
PaintScaleLegend
A legend that shows a range of values and their associated colors, driven by an underlyingPaintScale
implementation.
-