Line-with-markers chart: no transparency for SQUARE_X marker

While producing a line-with-data-markers chart with the Java API (1.9.4), i’ve noticed that when a want a SQUARE_X marker, I can’t get a transparent background on the back of the marker.

If I try to get a white background, it’s like my line is interrupted.
If I try with the same color as the foreground, i get a full square of this color (but it’s ok with SQUARE_STAR for example).

Just check out the green line on this sample picture

Any idea ?

Thx

Hi,

Please set the data series marker background color to null.

E.g.,

.

.

serieses.get(i).setMarkerStyle(ChartMarkerType.SQUARE_X);
serieses.get(i).setMarkerBackgroundColor(null);

Thank you.