Hi,

Whats the easiest way to fill a basic line chart from an array of 
value objects passed back from a remoteobject call?

The array contains value objects which themselves contain a String 
(for the label) and two numeric values. Do I have to rip through the 
array and fill an xml model?

The same data also fills a data grid which works fine:

<mx:DataGrid id="myDataGrid" dataProvider="{remote.getData.result}" 
width="100%">
<mx:columns>
    <mx:Array>
        <mx:DataGridColumn columnName="name" headerText="Name" />
        <mx:DataGridColumn columnName="total" headerText="Total" />
        <mx:DataGridColumn columnName="today" headerText="Today" />
    </mx:Array> 
</mx:columns>

Thanks in advance.


</mx:DataGrid>





 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to