在load
事件中,通过使用css
和attr
方法,您可以调整标题宽度和位置:
chart: {
events: {
load: function() {
var title = this.yAxis[0].axisTitle;
title.attr({
y: this.chartHeight,
align: 'left'
});
title.css({
width: this.chartHeight
});
}
}
}
现场演示:http://jsfiddle.net/BlackLabel/mtab0u15/
API参考:
https://api.highcharts.com/class-reference/Highcharts.SVGElement#css
https://api.highcharts.com/class-reference/Highcharts.SVGElement#attr