Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In chart.js, Is it possible to hide x-axis label/text of bar chart if accessing from mobile?

In chart.js, Is it possible to hide x-axis label/text of bar chart if accessing from mobile ?

enter image description here

I Wanna hide/remove labels on x-axis ie "January", "February" etc...

like image 775
Bhupender Keswani Avatar asked Nov 30 '22 18:11

Bhupender Keswani


2 Answers

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
                }
            }]
        }
    }
}
like image 76
Kapytanhook Avatar answered Dec 10 '22 21:12

Kapytanhook


I've added a new option.

http://www.knighttube.com/scripts/chart.js

http://www.knighttube.com/scripts/chart.min.js

showXAxisLabel:false

like image 34
Hatip Meviş Avatar answered Dec 10 '22 21:12

Hatip Meviş