This may sound very basic as a question, but i am stuck in JFreechart use.
Let me lay out my problem :
- I have a CombinedDomainXYPlot to which I add my subplots as and when required.
- 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
- 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.
You can get a
Listof subplots usinggetSubplots(). To learn which subplot was clicked, examine theChartMouseEventthat was sent from theChartPanel, as suggested here.Addendum: Here’s a simple implementation of
ChartMouseListenerthat will show eachChartEntityas it is clicked.