0👍
✅
The hashtag background is called gridLines
and you can disable it like so:
type: 'line',
data: { ... },
gridLines: {
display: false
}
Taken from http://www.chartjs.org/docs/#grid-line-configuration
0👍
For both axis
option: {
“scaleShowGridLines” : false
};
For X-axis :
scaleShowHorizontalLines: false
For Y-xais :
scaleShowVerticalLines: false
Source:stackexchange.com