How to create a column chart with only box inside?

Hi again …

I want to create a column chart with two series.
The first is displayed normally.
Columns of the other one aren’t displayed, there are only the floating values of the series (in box or without box in a first time, box can be create by painting the Area of the DataLabel to white… i think).
The real problem is to not display the columns … it’s possible ?

I join an exemple …


Hi,

Please wait for the new version.

It is supported in the new version.

ASeries aSeries = nSeries.get(0);
Area area = aSeries.getArea();
area.setVisible(false);
Line border = aSeries.getBorder();
border.setVisible(false);

Hi,

Ok !