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.
我有一个数据,比如 200,应该绘制为 yAxis 线。默认最小值和最大值分别设置为 300 和 500。如何动态绘制 yAxis 绘图线以及如何动态更改 yAxis 的比例?
提前致谢。
1) 添加 plotLine 使用chart.yAxis[0].addPlotLine(object). 查看文档
chart.yAxis[0].addPlotLine(object)
2)改变极端使用chart.yAxis[0].setExtremes(min, max)。查看文档
chart.yAxis[0].setExtremes(min, max)