good idea, I should trace that way...
This code ( in the adobe example) works:
var star:* = myChart.series[z].getStyle("fill");
"[object SolidColor]"
This code FAILS:
series1 = new ColumnSeries(); // snipped other property settings
var star:* = series1.getStyle("fill");
"undefined"
and yet
This FAILS too
mySeries.push(series1);
//snip
// add all the series to the chart
myChart.series = mySeries;
var starrr:* = myChart.series[0].getStyle("fill");
"undefined"
NOTE the chart as displayed has colors as assigned, so I know the
setStyle is working...
Continuing to experiment....
John
Amy wrote:
> If it were me, I'd put the result of the getStyle() into a variable
> with a * type and set a break point to look at it in the variables
> window, rather than trying to trace it out.
>
>