Thanks, I had tried that but the problem with that is that it doesnt work as expected.
This will cause each column in a single series to have a different color wherease I want all columns in a series to have the same color. ie Using the adobe default the first series is all gold, the second is all green, the third is all blue. I want to do the same except I want to change those color to something else, the something else being a set of colors specified by the designer. There are many, many charts, and any number of series and I want to simplify it for the developer when they add charts in to the application. tks --- In [email protected], "Sunil Bannur" <[EMAIL PROTECTED]> wrote: > > <mx:Style> > .myRedColumnSeries { > fills: #FF0033, #FF3333, #FF6633; > } > .myGreenColumnSeries { > fills: #33FF00, #33FF33, #33FF66; > } > </mx:Style> > > .... > > <mx:ColumnSeries ... styleName="myRedColumnSeries" /> > > > Thanks > -Sunil > > ________________________________ > > From: [email protected] [mailto:[EMAIL PROTECTED] On > Behalf Of reflexactions > Sent: Wednesday, January 23, 2008 11:16 AM > To: [email protected] > Subject: [flexcoders] Setting custom fills array in a chart > > > > FB3.3 > > What I want to do is to specify an array of fill color in CSS that all > my charts can use, line/bar etc... > > To act exactly as a replacement for the halo default array of chart > colors. > > How can I do this? > > tks >

