Highcharts从属xAxis与主xAxis不匹配

时间:2018-11-28 17:17:34

标签: javascript highcharts

我有一个带有两个xAxis的图表。我希望它们完全相同-因此它们是链接的,但是不管我尝试什么,它们看起来仍然有所不同:

主xAxis: enter image description here 一切看起来都很好

从站xAxis: enter image description here 为什么这里的一切都不同?而且最后2分甚至重叠!

这是我的xAxis:

xAxis = [
     {
         title: {
             text: null
         },
         startOnTick: false,
         endOnTick: false,
         type: 'datetime',
         lineColor: theme.colors.gray01,
         tickInterval: 1000 * 60 * 60 * 24 * 14,
         gapGridLineWidth: 0,
         minorGridLineWidth: 0,
         gridLineWidth: 0,
         offset: -286
     },
     {
         title: {
             text: null
         },
         startOnTick: false,
         endOnTick: false,
         type: 'datetime',
         lineColor: theme.colors.gray01,
         tickInterval: 1000 * 60 * 60 * 24 * 14,
         gapGridLineWidth: 0,
         minorGridLineWidth: 0,
         gridLineWidth: 0,
         offset: 41,
         linkedTo: 0,
         labels: {
             rotation: 0,
             autoRotation: 0
         }
     }
 ];

是否有任何与此代码无关的原因?

0 个答案:

没有答案