Java Code Examples for org.jfree.chart.fx.ChartCanvas#dispatchMouseClickedEvent()
The following examples show how to use
org.jfree.chart.fx.ChartCanvas#dispatchMouseClickedEvent() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DispatchHandlerFX.java From openstock with GNU General Public License v3.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }
Example 2
Source File: DispatchHandlerFX.java From ccu-historian with GNU General Public License v3.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }
Example 3
Source File: DispatchHandlerFX.java From SIMVA-SoS with Apache License 2.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }
Example 4
Source File: DispatchHandlerFX.java From ECG-Viewer with GNU General Public License v2.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }
Example 5
Source File: DispatchHandlerFX.java From buffer_bci with GNU General Public License v3.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }
Example 6
Source File: DispatchHandlerFX.java From buffer_bci with GNU General Public License v3.0 | 5 votes |
/** * Handles a mouse clicked event by setting the anchor point for the * canvas and redrawing the chart (the anchor point is a reference point * used by the chart to determine crosshair lines). * * @param canvas the chart canvas (<code>null</code> not permitted). * @param e the mouse event (<code>null</code> not permitted). */ @Override public void handleMouseClicked(ChartCanvas canvas, MouseEvent e) { if (this.mousePressedPoint == null) { return; } Point2D currPt = new Point2D.Double(e.getX(), e.getY()); if (this.mousePressedPoint.distance(currPt) < 2) { canvas.dispatchMouseClickedEvent(currPt, e); } this.mousePressedPoint = null; }