我在Chart.js中创建了一个水平分组的条形图,但陷入了一个奇怪的问题上。问题在于,尽管我禁用所有网格线条和边界,但图表仍显示出最高的水平线,我想摆脱它。在此屏幕截图中可见:https://i.stack.imgur.com/cutzv.jpg。我还制作了一个JSFIDDLE:https://jsfiddle.net/bsocw1v9/
function create_horizontal_bar_chart(){
/**
* Draw the chart on the correct canvas. Add the correct data sets
* and set the correct draw type.
*/
let ctx = document.getElementById('monthly_subscription_revenue_chart').getContext("2d");
let data = {
labels: ['Diensten'],
datasets: [
{
type: 'horizontalBar',
backgroundColor: "rgb(0,33,86)",
data: [2250],
stack: 1
},
{
type: 'horizontalBar',
backgroundColor: "rgb(219,219,219)",
data: [3000],
stack: 2
},
{
type: 'horizontalBar',
backgroundColor: "rgb(240,95,0)",
data: [750],
stack: 3
},
]
};
new Chart(ctx, {
type: 'horizontalBar',
data: data,
showScale: false,
options: {
legend: {
display: false
},
tooltips: {
enabled: false
},
hover: {
mode: null
},
scales: {
xAxes: [{
stacked: true,
display: false,
gridLines: {
drawBorder: false,
},
}],
yAxes: [{
stacked: true,
barPercentage: 0.9,
gridLines: {
drawBorder: false,
},
}]
}
}
});
}
我希望有人可以帮助我解决这个问题,因为我根本不知道是什么原因引起的。
您仅在图表边缘(通过将drawBorder
设置为false
(而不是网格线的边缘。错误的线是网格线。禁用轴的网格线:
gridLines: {
display: false
}
查看"网格线配置"下的文档。