That's usually an indiciation that the chart is correctly using the series, but for some reason the series isn't part of the chart's display tree. The most common case for this is if you try and put the same series in two different charts. They'll both behave like they contain the series, but flash only allows a DisplayObject to appear in a single spot in the tree, so it will only show up in one of the two charts. Ely.
________________________________ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of graysonpierce Sent: Monday, January 15, 2007 11:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Chart Series added programmatically don't display Hello, I was wondering if anyone knows why series added through AS to a CartesianChart wouldn't draw. The strange thing is that I can see tooltips (next to the vertical axis) when I mouse-over where the columns normally would be indicating the values in the dataprovider however the actual bars aren't displaying. I've tried calling a variety of invalidators to no avail. chart.series = arSeries; chart.invalidateDisplayList(); chart.invalidateProperties(); chart.invalidateSeriesStyles(); chart.invalidateSize(); GP