我在反应应用程序中使用react-chartjs2。我想删除额外的空间,如下图所示。
以下是我的图表配置选项
// chart options
const options = {
legend: {
display: false
},
scales: {
xAxes: [{
gridLines: {
color: ChartConfig.chartGridColor,
display: false
},
ticks: {
fontColor: ChartConfig.axesColor,
beginAtZero:true,
min: 0
}
}],
yAxes: [{
ticks: {
beginAtZero:true,
min: 0,
padding: 0,
display: false
},
gridLines: {
drawTicks: false,
drawBorder: false
}
}]
}
};