Jfree chart Find Subplot

爱⌒轻易说出口 提交于 2019-12-17 07:52:12

问题


This may sound very basic as a question, but i am stuck in JFreechart use.

Let me lay out my problem :

  1. I have a CombinedDomainXYPlot to which I add my subplots as and when required.
  2. I have used my custom JPopup menu and have included a menu item that is intended to provide user the facility to delete a particular subplot
  3. I am assuming that one can find a subplot using findSubplot method of the main plot. I am able to get mouse positions but not able to do anything with PlotRenderingInfo that's required as input.

Would appreciate some help.


回答1:


You can get a List of subplots using getSubplots(). To learn which subplot was clicked, examine the ChartMouseEvent that was sent from the ChartPanel, as suggested here.

Addendum: Here's a simple implementation of ChartMouseListener that will show each ChartEntity as it is clicked.

ChartPanel panel = ...
panel.addChartMouseListener(new ChartMouseListener() {

    @Override
    public void chartMouseClicked(ChartMouseEvent e) {
        System.out.println(e.getEntity().getClass());
    }

    @Override
    public void chartMouseMoved(ChartMouseEvent event) {}
});


来源:https://stackoverflow.com/questions/8523128/jfree-chart-find-subplot

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!