标签: java selection jfreechart
我用jfreechart绘制了几个时间序列。该图还包含多个注释。我希望用户能够选择时间序列或注释。
到目前为止,我已经尝试过:entityCollection.getEntity(x,y)向我返回PlotEntity和panel.getComponentAt(x,y),它为我提供了图表面板。
entityCollection.getEntity(x,y)
PlotEntity
panel.getComponentAt(x,y)
所以我的问题是:jFreechart能否向我提供这些信息?
答案 0 :(得分:3)
您可以添加ChartMouseListener,如图所示here。 ChartMouseEvent将指示找到了ChartEntity个子类。
ChartMouseListener
ChartMouseEvent
ChartEntity