ChartViewer and
ChartCanvas components.See: Description
| Interface | Description |
|---|---|
| ChartMouseListenerFX |
A mouse listener that can receive event notifications from a (JavaFX)
ChartViewer instance. |
| MouseHandlerFX |
The interface for a mouse handler, which is an object that listens for
mouse events on a
ChartCanvas and performs a function in response
to those events (typical functions include tooltip display, drag zooming,
mouse wheel zooming and panning). |
| Class | Description |
|---|---|
| AbstractMouseHandlerFX |
A base class that can be used to implement the
MouseHandlerFX
interface. |
| AnchorHandlerFX |
Handles mouse clicks on the
ChartCanvas by updating the anchor and
redrawing the chart. |
| ChartMouseEventFX |
A mouse event for a chart that is displayed in a (JavaFX)
ChartViewer. |
| DispatchHandlerFX |
Handles mouse move and click events on the
ChartCanvas by
dispatching ChartMouseEventFX events to listeners that are
registered with the ChartCanvas (listeners can also be registered
with a ChartViewer control). |
| PanHandlerFX |
Handles panning of charts on a
ChartCanvas. |
| ScrollHandlerFX |
Handles scroll events (mouse wheel etc) on a
ChartCanvas. |
| TooltipHandlerFX |
Handles the updating of tooltips on a
ChartCanvas. |
| ZoomHandlerFX |
Handles drag zooming of charts on a
ChartCanvas. |
ChartViewer and
ChartCanvas components.