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

前端 未结 6 1875
日久生厌
日久生厌 2021-01-13 14:06

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

\

6条回答
  •  不思量自难忘°
    2021-01-13 14:44

    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
                    }
                }]
            }
        }
    }
    

提交回复
热议问题