Package org.jfree.chart.event
Interface AxisChangeListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
CategoryPlot
,CombinedDomainCategoryPlot
,CombinedDomainXYPlot
,CombinedRangeCategoryPlot
,CombinedRangeXYPlot
,CompassPlot
,DialPlot
,FastScatterPlot
,FlowPlot
,MeterPlot
,MultiplePiePlot
,PaintScaleLegend
,PiePlot
,PiePlot3D
,Plot
,PolarPlot
,RingPlot
,SpiderWebPlot
,ThermometerPlot
,WaferMapPlot
,XYPlot
The interface that must be supported by classes that wish to receive
notification of changes to an axis.
The Plot class implements this interface, and automatically registers with its axes (if any). Any axis changes are passed on by the plot as a plot change event. This is part of the notification mechanism that ensures that charts are redrawn whenever changes are made to any chart component.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
axisChanged
(AxisChangeEvent event) Receives notification of an axis change event.
-
Method Details
-
axisChanged
Receives notification of an axis change event.- Parameters:
event
- the event.
-