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.
我希望通过 API 将 yAxis 类型从“对数”动态更改为“线性”。这不会在与图表相关的事件内
有人知道该怎么做吗?
您可以使用 highcharts 文档中的 axis.update 方法。此方法可帮助您更新轴选项。
chart.yAxis[0].update({ type: types[type] });
这是给你的一个例子 http://jsfiddle.net/7h2Vg/
希望这会有用。
http://api.highcharts.com/highcharts#Axis.update()