I have a loop in my flex application actionscript which pushes Line Series on an array.
All i'm specifying in this loop is the actual data and it automatically changes the color of the series for me.
loop...
{
series = ....;
push series onto array
}
chart series = array
I want to keep the random color generation but would like to change the width for all of them
now it seems the syntax is as follows series.setStyle("lineStrok
e", new Stroke(0xFF0000, 2, 0.4));
but I want the color generation to remain random.
Any ideas?
Thanks
Start Free Trial