0

我的图表:

<div style={{height: '100%', marginTop:'-20px'}}>
   <Line data={data} options={options} />
</div>

和图表选项:

const options = {
  scales:{
    yAxes:[{
      scaleLabel:{
        display: true,
      }
    }]
  }
};

在此处输入图像描述

现在我有这种情况,第二个点停在上边界。我怎样才能解决这个问题?

4

1 回答 1

0

您可以ticks.max在 y 轴上定义如下:

yAxes:[{
  ticks:{
    min: 0,
    max: 100 // or whatever value that suits you
  }
}]
于 2020-08-06T15:25:44.163 回答