Highcharts x-axis tick starts with an offset

后端 未结 4 1894
挽巷
挽巷 2020-12-06 14:47

I am trying to remove the offset on the tick of the x-axis.

I want the first tick 10/8 to start from the x-axis a

4条回答
  •  醉话见心
    2020-12-06 15:05

    Add pointPlacement: 'on' in plotOptions.

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

提交回复
热议问题