无法在标签的开头设置highchart轴标签?

时间:2018-06-29 20:04:37

标签: javascript highcharts

我仍然遇到海图问题。

我正在使用给定的数据生成图表。

我的x轴标签需要自定义,因此我传递了一组数组

xAxis: {    
    min: -3.5,
    //catagories: [xaxis],                
    //type: 'linear',
    tickInterval: 1,
    //showFirstLabel: true,
    //startOnTick: true,
    labels: {
        formatter: function () {                    
            return xaxis[this.value];
        },
        //tickPositions: -3,
        rotation: -90,
    },    
},

我环顾四周并尝试了许多事情,我在做什么错? 标签从0开始,我需要从图的开始开始

enter image description here

1 个答案:

答案 0 :(得分:0)

感谢@codeer,

xAxis: {    
    min: -3.5,
    //catagories: [xaxis],                
    //type: 'linear',
    tickInterval: 1,
    //showFirstLabel: true,
    //startOnTick: true,
    labels: {
        formatter: function () {                    
            return xaxis[this.value+3];
        },
        //tickPositions: -3,
        rotation: -90,
    },    
},

+3确实解决了我的问题,我曾尝试使用-3,但从未尝试过+3 ..谢谢!