Highcharts : How to remove the gap between series and vertical axis?

前端 未结 1 1351
青春惊慌失措
青春惊慌失措 2020-12-22 07:35

It seems like Highcharts is adding some spacing between the 1. series line start/series line end and the 2. vertical axis.

Please see the jsfiddle link and below sc

相关标签:
1条回答
  • 2020-12-22 07:57

    check pointPlacement

    when pointPlacement is "on", the point will not create any padding of the X axis.

     plotOptions: {
      series: {
        pointPlacement: 'on'
      }
    },
    

    Fiddle demo

    0 讨论(0)
提交回复
热议问题