Highstock / highcharts - yAxis标题宽度

问题描述 投票:0回答:1

如果我使用带有导航器的highstock,yAxis标签只是在图表区域中呈现,是否可以占用整个空间?

enter image description here

charts highcharts label
1个回答
1
投票

load事件中,通过使用cssattr方法,您可以调整标题宽度和位置:

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

© www.soinside.com 2019 - 2024. All rights reserved.