如何通过点击相应数据获取图表数据
我应该怎么做才能通过单击相应的数据图例来获取图表的数据。 假设我有数组 [{id:123, label:sales,year:2010},{id:124, label:refunds,year:2010}] 对于 x 轴为年份、y 轴为销售额的柱形图。 显示标签销售和退款的两个图例。
我想要的是通过单击图例“销售”来获取完整数据(id:123,标签:销售,年份:2010)。
我应该怎么办?
我尝试监听鼠标单击事件和 itemClick 事件。
what should i do to get chart's data on the click of respective data Legend.
suppose i have array [{id:123, label:sales, year:2010},{id:124, label:refunds, year:2010}]
for a column chart which has year in x-axis and sales iny-axis.
two legend showing labels sales and refund.
What i want is to get the whole data (id:123, label:sales, year:2010) on clicking of the legend 'sales'.
What should i do?
I tried listening mouse click event and itemClick event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该会让您朝着正确的方向前进:http://blog.flexmp.com/2008/03/10/interactive-charting-legend-to-select-which-series-to-display/
This should get you headed in the right direction: http://blog.flexmp.com/2008/03/10/interactive-charting-legend-to-select-which-series-to-display/