com.steema.teechart.events
Class SeriesMouseAdapter

java.lang.Object
  extended by com.steema.teechart.events.SeriesMouseAdapter
All Implemented Interfaces:
SeriesMouseListener, org.w3c.dom.events.EventListener

public abstract class SeriesMouseAdapter
extends java.lang.Object
implements SeriesMouseListener

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

Series events let you track when a series is clicked.

Extend this class to create a SeriesMouseEvent listener and override the methods for the events of interest. (If you implement the SeriesMouseListener 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 addSeriesMouseListener method. When a series is clicked (pressed and released), the relevant method in the listener object is invoked and the SeriesMouseEvent is passed to it.

Since:
1.0
See Also:
SeriesMouseEvent, SeriesMouseListenerer

Constructor Summary
SeriesMouseAdapter()
           
 
Method Summary
 void seriesClicked(SeriesMouseEvent e)
          Invoked when a Series is clicked.
 void seriesEntered(SeriesMouseEvent e)
          Invoked when the mouse pointer enters the Series.
 void seriesExited(SeriesMouseEvent e)
          Invoked when the mouse pointer leaves the Series.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.w3c.dom.events.EventListener
handleEvent
 

Constructor Detail

SeriesMouseAdapter

public SeriesMouseAdapter()
Method Detail

seriesClicked

public void seriesClicked(SeriesMouseEvent e)
Invoked when a Series is clicked.

Specified by:
seriesClicked in interface SeriesMouseListener

seriesEntered

public void seriesEntered(SeriesMouseEvent e)
Invoked when the mouse pointer enters the Series.

Specified by:
seriesEntered in interface SeriesMouseListener

seriesExited

public void seriesExited(SeriesMouseEvent e)
Invoked when the mouse pointer leaves the Series.

Specified by:
seriesExited in interface SeriesMouseListener