Hello,

I am trying to use a ColumnChart within a Repeater. Sadly the charts
are always empty. If I copy and paste the chart below the repeater,
the chart is displayed with valid vlaues of the last repeat. The
bindings seem to be right. So why the charts are empty if it's inside
the repeater? Is it a bug? I am using Flex 1.5.

Source:

<mx:Repeater id="panel"
dataProvider="{dataService.result.survey.bereich}">

...

<mx:VBox borderStyle="none" marginTop="0" marginBottom="4"
marginLeft="0" marginRight="7" width="314" height="100%">
<mx:ColumnChart type="stacked" columnWidthRatio=".7" marginLeft="0"
height="100%" width="100%" marginRight="0"
dataProvider="{panel.currentItem.reihe}" showDataTips="false"
clipContent="false">
<mx:horizontalAxis>
 <mx:CategoryAxis dataProvider="{panel.currentItem.reihe}"
categoryField="text"/>
</mx:horizontalAxis>
<mx:series>
 <mx:Array>
  <mx:ColumnSeries xField="text" yField="wert" styleName="seriesStyle">
  </mx:ColumnSeries>
 </mx:Array>
</mx:series>
</mx:ColumnChart>
</mx:VBox>

...
</mx:Repeater>
---

Thank you for any kind of help!









------------------------ Yahoo! Groups Sponsor --------------------~--> 
AIDS in India: A "lurking bomb." Click and help stop AIDS now.
http://us.click.yahoo.com/VpTY2A/lzNLAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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