我无法更改画布的高度和宽度。似乎我的图表的javascript渲染被覆盖了。
这是我的HTML代码
<body>
<canvas id="chartJSContainer" width="100" height="100"></canvas>
</body>
JS代码
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [
{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderWidth: 1,
backgroundColor: 'rgba(255, 0, 15, 0.54)'
},
{
label: '# of Points',
data: [7, 11, 5, 8, 3, 7],
borderWidth: 1
}
]
},
options: {
scales: {
yAxes: [{
ticks: {
reverse: false
}
}]
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
CSS代码
canvas { background-color : #eee;
width: 100 !important;
height: 100 !important;
}
这里是我的Fiddle,您可以看到我什至试图通过CSS覆盖高度和宽度。
您的CSS没有单位。使用100px !important;
或100% !important;
等