Highcharts:如何重命名系列
我在我的网络应用程序中使用 highcharts,我想知道是否有任何方法可以在创建图表后重命名系列?
提前致谢!!
I'm using highcharts in my web application and I was wondering if there's any way to rename a series after the chart hast been created??
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用以下命令更改系列名称:
You can use the following to change the series name:
其实现在有办法了。在highchars 3.0系列中添加了一个新的api,称为update:
它不仅会更新图表下方的系列名称,还会更新工具提示中的名称。
干杯!
actually, there's a way now. In highchars 3.0 series added a new api, called update:
it will not only update the series name below the chart, but the name in tooltip as well.
Cheers!
这似乎有效:
This seems to work :
API 中没有执行此操作的方法。您可以删除该系列并使用另一个名称再次添加它,但这将使动画第二次运行,我认为它也会使用新的颜色进行着色。
There is no method for doing this in the API. You could remove the series and add it again with another name, but that will make the animations run a second time and I think it will be colored with a new color as well.
不需要再次重绘图表
我们可以将其与系列选项一起包含在图表声明中,如下所示:
It is not required to Redraw chart again
We can include it along with the series option in the Chart declaration as below: