I’m using JFreeChart to create a chart that has 6 TimeSeries in it.
Problem: When I call .clear() on one of those series all others get hidden:
this.Series1.clear();
Question: What should I do to clear a series without others disappear?
Before calling .clear() on the “Red” series.

After calling .clear() on the “Red” series.

I get the expected result using either of these:
You may need to verify that each
TimeSeriesis a distinct instance.