I did not think this would be an issue, but I simply cannot understand
why this won't work:
I'm starting with a simple test, so no real code to speak of, but this
is what I'm doing.
A simple line chart, with three series. I have three combobox's. Each
series calls a unique dataPrivider (works fine when placing static
values) based on the selection in the combobox;
<mx:LineSeries id="Series1" displayName="Series 1" yField="DB_row"
dataProvider="{combobox.selectedItem}"/>
I have a label to provide a visual output of the cb selection in the
app and it is correct. I thought this would be the same as statically
typing in the value, but it appears the chart is not redrawing, yet
many on the examples I've found in the Adobe pages make similar
adjustments in a similar manner, no method to redraw. Very confusing.
So, can anyone point me in the direction of a sample where you can
change a charts dataProvider and yField within the application via a
combobox selections?
Thanks,