JFreeChart获取鼠标坐标

JFreeChart中是否有一种方法可以从ChartMouseEvent中确定鼠标悬停在绘图空间中的x,y坐标?我尝试使用域十字线值,但这似乎不准确并且滞后于实际的鼠标事件。

谢谢,

杰夫

回答:

鼠标坐标getTrigger()相对于ChartPanel,因此您需要对其进行转换:

Point2D p = chartPanel.translateScreenToJava2D(mouseChartEvent.getTrigger().getPoint());

Rectangle2D plotArea = chartPanel.getScreenDataArea();

XYPlot plot = (XYPlot) chart.getPlot(); // your plot

double chartX = plot.getDomainAxis().java2DToValue(p.getX(), plotArea, plot.getDomainAxisEdge());

double chartY = plot.getRangeAxis().java2DToValue(p.getY(), plotArea, plot.getRangeAxisEdge());

以上是 JFreeChart获取鼠标坐标 的全部内容, 来源链接: utcz.com/qa/405439.html

回到顶部