com.ijchart.xychart.listener
Interface IChartMouseListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
AbstractChartMouseAdapter

public interface IChartMouseListener
extends java.util.EventListener

Title: IJChart

Description: a chart library for the Java(tm) platform.

The interface that must be implemented by classes that wish to receive ChartMouseEvent notifications from a ChartPanel.

Copyright: Copyright (c) 2013

Company:

Version:
1.0
Author:
zhang feng min,shanghai china. Contract me by email.

Method Summary
 void chartMouseClicked(ChartMouseEvent event)
           Callback method for receiving notification of a mouse click on a chart.
 void chartMouseEntered(ChartMouseEvent event)
           Callback method for receiving notification of a mouse entered on a chart.
 void chartMouseExited(ChartMouseEvent event)
           Callback method for receiving notification of a mouse exited on a chart.
 void chartMouseMoved(ChartMouseEvent event)
           Callback method for receiving notification of a mouse movement on a chart.
 void chartMousePressed(ChartMouseEvent event)
           Callback method for receiving notification of a mouse pressed on a chart.
 void chartMouseReleased(ChartMouseEvent event)
           Callback method for receiving notification of a mouse released on a chart.
 

Method Detail

chartMouseClicked

void chartMouseClicked(ChartMouseEvent event)
Callback method for receiving notification of a mouse click on a chart.

Parameters:
event - ChartMouseEvent The event.

chartMouseMoved

void chartMouseMoved(ChartMouseEvent event)
Callback method for receiving notification of a mouse movement on a chart.

Parameters:
event - ChartMouseEvent The event.

chartMousePressed

void chartMousePressed(ChartMouseEvent event)
Callback method for receiving notification of a mouse pressed on a chart.

Parameters:
event - ChartMouseEvent The event.

chartMouseReleased

void chartMouseReleased(ChartMouseEvent event)
Callback method for receiving notification of a mouse released on a chart.

Parameters:
event - ChartMouseEvent The event.

chartMouseEntered

void chartMouseEntered(ChartMouseEvent event)
Callback method for receiving notification of a mouse entered on a chart.

Parameters:
event - ChartMouseEvent The event.

chartMouseExited

void chartMouseExited(ChartMouseEvent event)
Callback method for receiving notification of a mouse exited on a chart.

Parameters:
event - ChartMouseEvent The event.