我想获得提示,但我不知道如何在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
});