public abstract class ChartPaintAdapter extends java.lang.Object implements ChartPaintListener
Extend this class to create a ChartPaint
listener
and override the methods for the events of interest. (If you implement the
ChartPaintListener
interface, you have to define all of
the methods in it. This abstract class defines null methods for them
all, so you can only have to define methods for events you care about.)
Create a listener object using the extended class and then register it with
a component using the component's addChartPaintListener
method.
ChartPaintListener
Constructor and Description |
---|
ChartPaintAdapter() |
Modifier and Type | Method and Description |
---|---|
void |
axesPainting(ChartDrawEvent e)
Invoked before Axes are drawn
|
void |
chartPainted(ChartDrawEvent e)
Invoked after Chart is drawn
|
void |
chartPainting(ChartDrawEvent e)
Invoked before Chart is drawn
|
void |
seriesPainted(ChartDrawEvent e)
Invoked after Series are drawn
|
void |
seriesPainting(ChartDrawEvent e)
Invoked before Series are drawn
|
public void axesPainting(ChartDrawEvent e)
axesPainting
in interface ChartPaintListener
public void chartPainted(ChartDrawEvent e)
chartPainted
in interface ChartPaintListener
public void chartPainting(ChartDrawEvent e)
chartPainting
in interface ChartPaintListener
public void seriesPainted(ChartDrawEvent e)
seriesPainted
in interface SeriesPaintListener
public void seriesPainting(ChartDrawEvent e)
seriesPainting
in interface SeriesPaintListener