设置滴答计数时,c3js光标与图表点不对齐

时间:2015-09-29 14:09:37

标签: javascript c3.js

当我设置我的图表选项时

data: {
  columns: [
      [
          'predicted',
          num1,
          num2,
          ...
          ...
          num365
      ]
  ],
  type: 'spline'
},
point: {
  show: false
},
axis: {
  x: {
      type: 'normal',
      tick: {
          fit: true,
          culling: true
      }
  }
}

然后当我沿着图表移动光标时,它的位置是正确的,在这个例子中,光标位于点'0'并与垂直线对齐

enter image description here

当我更改tick count选项时,无论如何

data: {
  columns: [
      [
          'predicted',
          num1,
          num2,
          ...
          ...
          num365
      ]
  ],
  type: 'spline'
},
point: {
  show: false
},
axis: {
  x: {
      type: 'normal',
      tick: {
          fit: true,
          culling: true,
          count: 5
      }
  }
}

图表上光标和垂直线之间的对齐关闭,在光标下方的图像中仍然是点“0”

enter image description here

0 个答案:

没有答案