[Chartjs]-Chart.js remove lower grid from mixed chart

1πŸ‘

βœ…

In your config for the X axis where you set the ticks to display false, if you instead do this in the root of the X scale config it will hide that line so you will get:

scales:{
  x: {
    display: false,
    min: 1,
    max: 18,
    offset: true
  }
}

Leave a comment