how to build flex stack bar chart from objects array?
- by AngelHeart
I have a dynamic ArrayCollection that will contain a unknown number of objects of type MyObj:
class MyObj
{
type:String
value:long
}
where each MyObj object has a different value of "type".
how can I build a single stacked bar from this array where each section of the stacked bar represents an object of MyObj (represents a "type") and its length is the value?