有可能吗?
我尝试过类似的事情
"elements": {
"bar": {
"maxHeight": 10,
"height": 10
}
},
但这没用...
当我有很多值时,它看起来像这样:
答案 0 :(得分:0)
我自己回答了一个问题。
首先,我在div中创建图表:
<div id="chart-control">
<canvas id="chart"></canvas>
</div>
然后我根据行数[data.length] *(4/3)更改div的高度
document.getElementById("chart-control").style.height = (data.length * (4/3)) + "em";