Chartjs - 填充问题

时间:2018-06-18 10:40:53

标签: javascript charts

我在Chartjs 2.7.1中制作了一张图表 这是它的样子:

enter image description here

我希望绿色区域在开始,就像它在左侧一样。我不知道保证金来自哪里,所以它可能是一个错误。

scales: {
    yAxes: [{
        ticks: {
          fontSize: 9,
          fontColor: '#696f74',
          beginAtZero: true,
          display: true,
          autoSkip:true,
          maxTicksLimit:6,
          maxRotation:0
        },
        gridLines: {
          display: true,
          color: "rgba(91, 127, 130, 0.3",
          zeroLineColor: "rgba(91, 127, 130, 0.3",

          drawBorder: false
        },
    }],
    xAxes: [{
      gridLines: {
        display: true,
        color: "rgba(91, 127, 130, 0.3",
        drawBorder: false
      },
      ticks: {
        fontSize: 9,
        fontColor: '#696f74',
        autoSkip:true,
        maxTicksLimit: 5,
        maxRotation:0    

      }
  }]
}

有关如何解决此问题的任何提示,或强制它从底部开始?
提前谢谢!

0 个答案:

没有答案