ChartJS 水平条几乎不可见,Y 轴上有 50 条记录
ChartJS Horizontal bars barely visible with 50 records on the Y axis
ChartJS(3.7.0) 有没有办法设置水平条的垂直粗细?或者更改缩放级别或其他内容?
我有一个包含 50 行的记录集,它应该显示 50 个水平条。但是当图表被渲染时。代表水平条的线几乎看不见。
我正在使用这个配置:
const config = {
type: 'bar',
data: chart_data,
options: {
maintainAspectRatio: false,
scales: {
yAxes: [{
barThickness: 20, // number (pixels) or 'flex'
maxBarThickness: 22 // number (pixels)
}]
},
indexAxis: 'y',
plugins: {
legend: {
position: 'right',
},
}
}
};
我还在每个数据集中设置条形和最大厚度。同时将包含
ChartJS(3.7.0) 有没有办法设置水平条的垂直粗细?或者更改缩放级别或其他内容?
我有一个包含 50 行的记录集,它应该显示 50 个水平条。但是当图表被渲染时。代表水平条的线几乎看不见。
我正在使用这个配置:
const config = {
type: 'bar',
data: chart_data,
options: {
maintainAspectRatio: false,
scales: {
yAxes: [{
barThickness: 20, // number (pixels) or 'flex'
maxBarThickness: 22 // number (pixels)
}]
},
indexAxis: 'y',
plugins: {
legend: {
position: 'right',
},
}
}
};
我还在每个数据集中设置条形和最大厚度。同时将包含