0

How you toggle the lines that are parallel to X axis and appear for each value on Y axis? These ones - enter image description here

upInCloud
  • 979
  • 2
  • 10
  • 29

2 Answers2

2
xAxis: {
 ...  
 lineWidth: 0,
 minorGridLineWidth: 0,
 lineColor: 'transparent',
 ...          
 labels: {
   enabled: false
 },
 minorTickLength: 0,
 tickLength: 0
}

Just add this to the x axis definition

0

Its the yAxis.gridWidth - look the API Doc

Fiddle

Core972
  • 4,065
  • 3
  • 31
  • 45