标签未显示在xAxis的正确位置,日期时间类型为高级图表

时间:2015-01-12 06:49:17

标签: javascript jquery highcharts

我的xAxis配置是:

  

{

labels:{
         enabled:true,
         style:{
           fontSize:'9Px',width: '175px'
         },
        formatter: function () {
           var s = "";
           s = s + getWeekDates(this.value);
           s = s + "," + Highcharts.dateFormat('%Y', this.value);
           return s;
           }
}
     

输入:'datetime',

     

minTickInterval:24 * 3600 * 1000 * 7,

     

}

但是当我将鼠标悬停在图表上时,tickLabel和marker不在同一位置!!

enter image description here enter image description here

我希望当我悬停在w5,2014 label上时,标记必须处于垂直位置。
提前谢谢..

1 个答案:

答案 0 :(得分:0)

您应该设置pointRange然后调整tickInterval。