Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要动态更改图例标签,当我没有找到类似的方法时我很惊讶chart.legend.setLabels()
chart.legend.setLabels()
我试过这个
chart.legend.allItems[0].name = 'bla bla' chart.legend.redraw()
什么都没发生
试图改变选项
chart.options.legend.labels[0].name = 'bla bla' chart.redraw()
那么有没有办法更改图例标签名称?
您可以使用 update() 函数
chart.legend.allItems[0].update({name:'aaa'});
http://jsfiddle.net/bL5ZM/1/
你也可以使用
chart.series[0].update({ name: "hello"});
http://jsfiddle.net/bL5ZM/149/