Displaying all XYSeries at once in jFreeChart for improving speed
问题 Suppose that we need to display multiple XYSeries in a single XYSeriesCollection . My problem is that every time I add a XYSeries , the JFreeChart wants to update the chart and that slows down the process of displaying multiple XYSeries . What I want is similar to this: // Do not update the chart XYSeriesCollection.add(XYSeries1) XYSeriesCollection.add(XYSeries2) ... XYSeriesCollection.add(XYSeries10) // Update the chart How can I do this? 回答1: Construct a new XYSeriesCollection having the