我有此默认条形图,它在条形图中显示条形值。我不希望这样显示
这是图表的代码:
myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: labels,
datasets: datasets
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
},
maintainAspectRatio: false
}
});
是否有任何选项可以禁用此行为?
最好的问候
答案 0 :(得分:1)
问题已解决:
脚本中包含了datalabels插件,并在栏上写了值。