ved*_*vas 3 angularjs chart.js
想要在 Chart.js 的工具提示中添加 % 符号怎么办?
var chart = new chart(ctx,{
type:'bar',
data : data
});
Run Code Online (Sandbox Code Playgroud)
options : {
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
label: function (tooltipItems, data) {
return tooltipItems.yLabel + " %";
}
}
}
Run Code Online (Sandbox Code Playgroud)