com.jinsight.jetchart
Class SerieAdapter

java.lang.Object
  |
  +--com.jinsight.jetchart.SerieAdapter
All Implemented Interfaces:
SerieListener

public class SerieAdapter
extends java.lang.Object
implements SerieListener

The SerieAdapter class implements the methods of the SerieListener interface, saving the user from having to implement all of them. By subclassing SerieAdapter the user only needs to override the methods that are of his or her interest.

See Also:
SerieListener, SerieEvent

Constructor Summary
SerieAdapter()
           
 
Method Summary
 void mouseMoved(SerieEvent evt)
          This method is called if the mouse cursor is moved over the chart area.
 void serieClicked(SerieEvent evt)
          This method is called after a series data point has been clicked.
 void serieDragged(SerieEvent evt)
          This method is called while a series data point is dragged.
 void serieReleased(SerieEvent evt)
          This method is called after a series data point is released.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SerieAdapter

public SerieAdapter()
Method Detail

serieClicked

public void serieClicked(SerieEvent evt)
Description copied from interface: SerieListener
This method is called after a series data point has been clicked.
Specified by:
serieClicked in interface SerieListener
Following copied from interface: com.jinsight.jetchart.SerieListener
Parameters:
se - A SerieEvent object
See Also:
SerieEvent

serieReleased

public void serieReleased(SerieEvent evt)
Description copied from interface: SerieListener
This method is called after a series data point is released.
Specified by:
serieReleased in interface SerieListener
Following copied from interface: com.jinsight.jetchart.SerieListener
Parameters:
se - A SerieEvent object
See Also:
SerieEvent

serieDragged

public void serieDragged(SerieEvent evt)
Description copied from interface: SerieListener
This method is called while a series data point is dragged. Scatter charts and pie charts do not dispatch series events to this method.
Specified by:
serieDragged in interface SerieListener
Following copied from interface: com.jinsight.jetchart.SerieListener
Parameters:
se - A SerieEvent object
See Also:
SerieEvent, Graph.setSerieDraggingEnabled(boolean)

mouseMoved

public void mouseMoved(SerieEvent evt)
Description copied from interface: SerieListener
This method is called if the mouse cursor is moved over the chart area. Series events are not dispatched to this method if chart is displaying a pie series, chart is 3D or tooltips display is enabled.
Specified by:
mouseMoved in interface SerieListener
Following copied from interface: com.jinsight.jetchart.SerieListener
Parameters:
se - A SerieEvent object
See Also:
SerieEvent, Graph.setMultipleSerieEventsEnabled(boolean)