如何实现chart.js馅饼提示

时间:2016-11-29 09:24:28

标签: javascript chart.js

enter image description here

我想获得提示,但我不知道如何在chart.js中配置。 这是我的代码:



var optionsPie = {
    responsive: true,
    animation: {
        animateScale: false
    },
    legend: {
        labels: {
            fontSize: 14,
            fontColor: '#000'
        }
    },
    defaultFontSize: 14,
    defaultFontColor: '#000',
    animateRotate: true,
    scales: {
        afterUpdate: function(obj) {
            console.log('afterUpdate', obj);
        }
    }
};
var type = 'pie';
var ctx = document.getElementById('chartBox');
var myChart = new Chart(ctx, {
    type: type,
    data: dataPie,
    options: optionsPie
});




0 个答案:

没有答案