com.steema.teechart.events
Class ChartPaintAdapter

java.lang.Object
  extended by com.steema.teechart.events.ChartPaintAdapter
All Implemented Interfaces:
ChartPaintListener, SeriesPaintListener, java.util.EventListener

public abstract class ChartPaintAdapter
extends java.lang.Object
implements ChartPaintListener

An abstract adapter class for receiving chart paint events. The methods in this class are empty. This class exists as convenience for creating listener objects.

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.

Since:
1.0
See Also:
ChartPaintListener

Constructor Summary
ChartPaintAdapter()
           
 
Method Summary
 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
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ChartPaintAdapter

public ChartPaintAdapter()
Method Detail

axesPainting

public void axesPainting(ChartDrawEvent e)
Invoked before Axes are drawn

Specified by:
axesPainting in interface ChartPaintListener

chartPainted

public void chartPainted(ChartDrawEvent e)
Invoked after Chart is drawn

Specified by:
chartPainted in interface ChartPaintListener

chartPainting

public void chartPainting(ChartDrawEvent e)
Invoked before Chart is drawn

Specified by:
chartPainting in interface ChartPaintListener

seriesPainted

public void seriesPainted(ChartDrawEvent e)
Invoked after Series are drawn

Specified by:
seriesPainted in interface SeriesPaintListener

seriesPainting

public void seriesPainting(ChartDrawEvent e)
Invoked before Series are drawn

Specified by:
seriesPainting in interface SeriesPaintListener