如何从chart.js中删除值

时间:2018-12-21 00:22:11

标签: charts

如何从堆积图折线图中的左侧删除值和该灰线。我试图将fontSize设置为0,但没有任何反应

    options: {
      responsive: false,
      maintainAspectRatio: false,
      legend: {
        display: false
      },
      scales: {
        yAxes: [{
          stacked: false,
          ticks: {
            fontSize: 0
        }
        }],
        xAxes: [{
          stacked: false,
          ticks: {
            fontSize: 0
        }
        }]
      },

enter image description here

2 个答案:

答案 0 :(得分:0)

display设置为false ...

  scales: {
    yAxes: [{
      display: false,  // <-- add this
      stacked: false,
      ticks: {
        fontSize: 0
    }
    }],

答案 1 :(得分:0)

这是一个愚蠢的错误。正确的方法是:

type: 'line',
      data: { }
      options: { }

我写成

 type: 'line',
       data: { 
        options: { }
       }