如何在highcharts中设置axis标签内的宽度

时间:2016-01-07 15:01:48

标签: highcharts bar-chart

有人知道hightcharts中的哪个设置可以更改标有红色箭头的宽度作为示例吗?

请看下面的图片

I want to set the width of the red arrow as example

1 个答案:

答案 0 :(得分:0)

您正在使用类别,因此在所有现有类别之间均匀划分轴。换句话说,您只需删除不必要的类别,例如:http://jsfiddle.net/mwqto4n6/

$('#container').highcharts({
    xAxis: {
         categories: ["2016", "2025"]
    },
    series: [{
        type: 'column',
        data: [200, 120]
    }]
});