创建后更改 YUI 饼图的颜色
我想在创建饼图后更改可用的颜色数组。我想我需要使用 setSeriesStyles 方法,但我找不到它的任何示例和 文档不清楚。
到目前为止我已经尝试过
pieChart.setSeriesStyles([{colors: ['#D4D4D4']}]);
并且
pieChart.setSeriesStyles([{ style: { colors: ['#D4D4D4']}}]);
I want to change the array of colors available to a pie-chart after I have created it. I think I need to use the setSeriesStyles method but I cannot find any examples of it and the documentation is not clear.
So far I have tried
pieChart.setSeriesStyles([{colors: ['#D4D4D4']}]);
and
pieChart.setSeriesStyles([{ style: { colors: ['#D4D4D4']}}]);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为我有一个正在轮询的实时数据源,所以我可以在数据更改时监听事件,然后在将数据发送到图表之前更新图表。
Because I have a live datasource that I am polling, I can listen for an event when the data changes and then update the chart before sending the data onto it.