Chart.js-如何删除百分比数据标签?

时间:2018-10-26 17:05:57

标签: javascript chart.js

我正在使用Chart.js,并且要删除下图中带有红色圆圈标记的百分比的标签。

Example

我正在使用以下代码生成此图表:

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
});

我该怎么做?预先感谢!

1 个答案:

答案 0 :(得分:0)

您的代码中必须有一些逻辑。 ctx.fillText(值+'%',position.x,position.y);像这样。我没有在给定代码的代码中看到这一点。如果在那里,请删除它。它将起作用。