In chart.js, Is it possible to hide x-axis label/text of bar chart if accessing from mobile ?
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 } }] } } }