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”.
Source:stackexchange.com