Search found 1 match
- Thu Jul 26, 2012 7:52 am
- Forum: JFreeChart
- Topic: Bug in XYSeriesCollection
- Replies: 3
- Views: 5897
Re: Bug in XYSeriesCollection
I had the same problem. For those interested changing vetoableChange in XYSeriesCollection to the following also does the trick. public void vetoableChange(PropertyChangeEvent e) throws PropertyVetoException { // if it is not the series name, then we have no interest if (!"Key".equals(e.getPropertyN...