覆盖图表图例。如何?
通常我们会做这样的事情,并且更新具有相同的名称。
chart1.addSeries("job", new, {
});
是否可以使用其他名称覆盖系列作业,例如使用系列“某事”覆盖系列作业?我什么时候进行更新?
问题是,如果我使用相同的名称进行更新,则只会更改系列的值,但图表图例是相同的,
谢谢
normally we made something like this, and the update have the same name.
chart1.addSeries("job", new, {
});
it is possible to override the series job, with another name, for example override the series job with the series "something"? when i make the update?
the problem is, if i make the update with the same name only the values of the series is changed, but the chart legend is the same
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除现有系列 (
chart.removeSeries('job')
),并添加具有相同名称的新系列 (chart.addSeries('job')
)。我们也可以对图例做同样的事情。remove the existing series (
chart.removeSeries('job')
), and add the new series with the same name (chart.addSeries('job')
). Also we can do the same for the legend.