在柱形图的 Y 轴中显示两列或多列的总和
我是弯曲的新手。
我正在从 SAP 获取数据并在仪表板中以柱形图显示。 我使用 ArrayCollection 作为数据提供者。
它有 27 列(字段)。所以我使用 27 个柱形图。
但是,我还必须在两个图表中显示这些内容的摘要。即一个图表中 14 列的总和,另一个图表中 13 列的总和。
有一个简单的方法吗?就像在数据提供者中指定一些求和运算一样。
谢谢。
拉维·库马尔·辛格
I am new to flex.
I am taking data from SAP and displaying in column chart in a dashboard.
I am using an ArrayCollection
as data provider.
This has 27 columns(fields). So i am using 27 columns charts.
However, I also have to display the summary of these in two charts.i.e. sum of 14 columns in one chart and 13 columns into other.
Is there a simple way to this? Like specifying some summation operation in data provider.
Thanks.
Ravi Kumar Singh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是特别。您要做的就是在获取数据后,手动进行求和并将其添加到 ArrayCollection 中。
Not particularly. What you have to do is when you get the data, do the summation manually and add it to the ArrayCollection.
我搜索并使用了堆积图。我在同一个图表中使用了两个列集。一个代表 14 列和其他 13 列的总和。不过还是谢谢你的回复。
I searched and used stacked chart. I used two columnsets in same chart. One to represent sum of 14 columns and other 13. However thank you for your reply.