高库存/高图表-yAxis标题宽度

时间:2019-04-25 11:49:05

标签: charts highcharts label

如果我将highstock与导航器一起使用,则yAxis标签仅显示在图表区域中,是否可以占用整个空间?

enter image description here

1 个答案:

答案 0 :(得分: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