CHARTInfo addData with color parameter don't work

I use ChartInfo

public void addData(java.lang.String xAxis,
java.lang.String dataDescription,
double dataValue,
java.lang.String dataColor);

to generate a colored bar in a chart, but the color of the bar is always black.

Can somebody help me?

chart.addData(“North”, “January”, 100, “blue”); - don’t work!
chart.addData(“North”, “January”, 100, “#0000FF”); - don’t work!

It don’t work.

You can set the color before you add the data.

Example:

chart.setXAxisDataColor(“blue”);
chart.addData(“North”, “January”, 100, “”);

In the next Build, this Bug is fixed.

Thank you for your help!