invientchart lineConfig visible property

Hi everybody,

In invientChart component i want to make a series line invisible by default
here is the code. But it is still visible


splineCfg = new LineConfig();
splineCfg.setMarker(new SymbolMarker(Symbol.DIAMOND));
splineCfg.setColor(ACCURACY_COLOR);
splineCfg.setVisible(false);
series = new XYSeries(ACCURACY, splineCfg);

for (ModelResult modelResult : workspace.getResults()) {
	series.addPoint(new DecimalPoint(series, modelResult
			.getConfusionMatrix().getChurnerAccuracyMean() * 100));
}
chart.addSeries(series);

is it a bug in the component?

It was a bug and has been fixed in version 0.8.5.
Please let us know if the issue still persists.

Thanks