Hi shareef,
To create a bar layer with all the bars being the same color, the API is addBarLayer. There are many examples in the ChartDirector distribution in which all the bars are of a single color. May be you can refer to them as references.
For example, in C#/Java, instead of using:
c.addBarLayer3(data);
you may use:
c.addBarLayer(data, 0x666699);
Hope this can help.
Regards
Peter Kwan |