FLEX: can I use a Repeater inside a Series element ?

Posted by Patrick on Stack Overflow See other posts from Stack Overflow or by Patrick
Published on 2010-05-04T16:13:10Z Indexed on 2010/05/04 16:18 UTC
Read the original article Hit count: 151

Filed under:

hi,

can I use mx:Repeater inside mx:Series element ?

<mx:series>
   <mx:AreaSeries id="timeArea" styleName="timeArea" name="A" dataProvider="{dataManager.tagViewTimelineModel.tags.getItemAt(0).yearPopularity}" yField="popularity" areaStroke="{new Stroke(0x0033CC, 2)}" areaFill="{new SolidColor(0x0033CC, 0.5)}" />

   <mx:LineSeries styleName="timeLine" dataProvider="{dataManager.tagViewTimelineModel.tags.getItemAt(0).yearPopularity}" yField="popularity" stroke="{new Stroke(0xCC33CC, 2)}"  />                
</mx:series>

I don't compiling errors, but my application just doesn't start. thanks

© Stack Overflow or respective owner

Related posts about flex