我正在使用Chart.js,并且要删除下图中带有红色圆圈标记的百分比的标签。
我正在使用以下代码生成此图表:
const options = {
responsive: true,
title: {
display: false
},
legend: {
display: false
},
tooltips: {
mode: 'index',
intersect: true
},
scales: {
yAxes: [{
type: 'linear',
position: 'left',
id: 'y-axis-1'
}, {
type: 'linear',
position: 'right',
id: 'y-axis-2',
gridLines: {
drawOnChartArea: false
}
}],
}
};
new Chart(document.getElementById('originalThirdChart').getContext('2d'), {
type: 'bar',
data: data,
options: options
});
我该怎么做?预先感谢!
答案 0 :(得分:0)
您的代码中必须有一些逻辑。 ctx.fillText(值+'%',position.x,position.y);像这样。我没有在给定代码的代码中看到这一点。如果在那里,请删除它。它将起作用。