public abstract class SeriesPaintAdapter extends java.lang.Object implements SeriesPaintListener
Extend this class to create a SeriesPaint listener
and override the methods for the events of interest. (If you implement the
SeriesPaintListener 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 addSeriesPaintListener
method.
SeriesPaintListener| Constructor and Description |
|---|
SeriesPaintAdapter() |
| Modifier and Type | Method and Description |
|---|---|
void |
seriesPainted(ChartDrawEvent e)
Invoked after Series are drawn
|
void |
seriesPainting(ChartDrawEvent e)
Invoked before Series are drawn
|
public void seriesPainting(ChartDrawEvent e)
seriesPainting in interface SeriesPaintListenerpublic void seriesPainted(ChartDrawEvent e)
seriesPainted in interface SeriesPaintListener