[Chartjs]-Remove top horizontal line in a horizontal bar chart (Chart.js 2)

1👍

You have only disabled borders on the edge of the chart (by setting drawBorder to false), not grid lines. The line that bugs you is a grid line. To disable grid lines for an axis use:

gridLines: {
    display: false
}

Look at the docs under “Grid Line Configuration”.

Leave a comment