In chart.js, Is it possible to hide x-axis label/text of bar chart if accessing from mobile ?
I Wanna hide/remove labels on x-axis ie "January", "February" etc...
They added the option, 2.1.4 (and maybe a little earlier) has it
var myLineChart = new Chart(ctx, {
type: 'line',
data: data,
options: {
scales: {
xAxes: [{
ticks: {
display: false
}
}]
}
}
}
I've added a new option.
http://www.knighttube.com/scripts/chart.js
http://www.knighttube.com/scripts/chart.min.js
showXAxisLabel:false
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With