My chart:
<div style={{height: '100%', marginTop:'-20px'}}>
<Line data={data} options={options} />
</div>
and options for chart:
const options = {
scales:{
yAxes:[{
scaleLabel:{
display: true,
}
}]
}
};
Now I have this situation, the second point stops at the upper border. How can I fix this?