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.
当图表缩放到某个级别时,是否可以更改轴标签大小(字体或大小)?显然,在某些情况下,当您看到整个图表时,您无法放置字体 24,而是希望在缩放时使字体更大。
谢谢,
你可以像下面的代码那样做:
chart : { renderTo : 'container', zoomType: 'x', events: { selection: function() { this.yAxis[0].options.labels.style.fontSize = "20px"; } } }
演示
如果您查看参考资料,您会发现您可以更改其他属性。