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.
我想知道是否可以使用外部按钮动态更改 Highcharts 中 Serie 的 lineWidth 。我一直在阅读所有文档,但恐怕此功能不可用。
感谢和问候!
是的你可以。
使用此属性,您可以设置线宽。只需按一下按钮更改选项并调用chart.redraw()
chart.redraw()
如果您只想更改其中一个系列,请这样做
指定“线宽”。尝试这个-
series: [{ name: '', color: '#ffe8d0', data: [7.0, 16.9, 19.5, 24.5, 38.2, 41.5, 55.2, 66.5], lineWidth: 7, },]