从 Flex 中的对象数组构建堆栈条形图
我有一个动态 ArrayCollection
,它将包含未知数量的 MyObj
类型的对象:
class MyObj
{
type:String
value:long
}
每个 MyObj
对象都有不同的 type 值
。
如何从此数组构建单个堆叠条,其中堆叠条的每个部分代表 MyObj
的一个对象(代表 type
),其长度为 值?
I have a dynamic ArrayCollection
that will contain an unknown number of objects of type MyObj
:
class MyObj
{
type:String
value:long
}
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
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查这个代码:
Check this code: