This question already has an answer here:
Drawing Line chart in Java [closed]

(1个答案)


5年前关闭。




我想将chartmouselistener()添加到this图的某些特定点,例如(1,1),(2,4),(3,3)等,并打印一些内容。

我不希望整个面板使用mouselistener()mouselistener()仅在我单击预定义点时才起作用。

有人可以建议如何做吗?

最佳答案

您应该在整个面板中添加一个ChartMouseListener,然后调用ChartMouseEvent.getEntity()来确定单击了哪一点。

07-24 09:18