Uses of Interface
org.jfree.chart.fx.interaction.MouseHandlerFX
| Package | Description |
|---|---|
| org.jfree.chart.fx |
Contains the key classes
ChartViewer and
ChartCanvas. |
| org.jfree.chart.fx.interaction |
Contains classes that implement most of the interactivity for the
ChartViewer and
ChartCanvas components. |
-
Uses of MouseHandlerFX in org.jfree.chart.fx
Methods in org.jfree.chart.fx that return MouseHandlerFX Modifier and Type Method Description MouseHandlerFXChartCanvas. getMouseHandler(String id)Returns the mouse handler with the specified ID, ornullif there is no handler with that ID.Methods in org.jfree.chart.fx with parameters of type MouseHandlerFX Modifier and Type Method Description voidChartCanvas. addAuxiliaryMouseHandler(MouseHandlerFX handler)Adds a handler to the list of auxiliary handlers.voidChartCanvas. addMouseHandler(MouseHandlerFX handler)Adds a mouse handler to the list of available handlers (handlers that are candidates to take the position of live handler).voidChartCanvas. removeAuxiliaryMouseHandler(MouseHandlerFX handler)Removes a handler from the list of auxiliary handlers.voidChartCanvas. removeMouseHandler(MouseHandlerFX handler)Removes a handler from the list of available handlers. -
Uses of MouseHandlerFX in org.jfree.chart.fx.interaction
Classes in org.jfree.chart.fx.interaction that implement MouseHandlerFX Modifier and Type Class Description classAbstractMouseHandlerFXA base class that can be used to implement theMouseHandlerFXinterface.classAnchorHandlerFXHandles mouse clicks on theChartCanvasby updating the anchor and redrawing the chart.classDispatchHandlerFXHandles mouse move and click events on theChartCanvasby dispatchingChartMouseEventFXevents to listeners that are registered with theChartCanvas(listeners can also be registered with aChartViewercontrol).classPanHandlerFXHandles panning of charts on aChartCanvas.classScrollHandlerFXHandles scroll events (mouse wheel etc) on aChartCanvas.classTooltipHandlerFXHandles the updating of tooltips on aChartCanvas.classZoomHandlerFXHandles drag zooming of charts on aChartCanvas.