Highcharts图的底部(x轴)线应该消失

时间:2016-06-06 08:47:55

标签: highcharts axis

我不知道为什么我的Highcharts图的底部水平线显示一条线(在屏幕截图中突出显示)。它应该不存在......

猜猜有一个简单的伎俩摆脱它?我没有找到解决方案......

enter image description here

xAxis: {
  labels: {
    enabled: false,
    style: {
      color: "#666666"
    },
    x: 0
  },
  gridLineWidth: 0,
  gridLineDashStyle: 'Dot',
  tickWidth: 0
},

Here is a fiddle

感谢任何提示!

1 个答案:

答案 0 :(得分:4)

这是轴线。您可以将其宽度设置为零:

xAxis: {
    lineWidth: 0,
    // ...
}

请参阅this updated JSFiddlethe API