我需要一些帮助。我正在使用带有“甜甜圈”模型的chart.js图形。我需要在图表上打印的值,包括绝对值和与金额相关的百分比(如下面的模型所示)。
请有人帮忙
var ctx = document.getElementById("tempoGastoNaLoja");
var myDoughnutChart2 = new Chart(ctx, {
type: 'doughnut',
data: {
labels: [
"10min",
"30min",
"45min",
"1h",
"1h30",
"2h+"
],
datasets: [
{
data: [80, 42, 38, 21, 15, 18],
backgroundColor: [
"#ffd833",
"#f4b12d",
"#e88b28",
"#dd6422",
"#d13e1d",
"#c61717"
],
hoverBackgroundColor: [
"#ffd833",
"#f4b12d",
"#e88b28",
"#dd6422",
"#d13e1d",
"#c61717"
]
}],
options: {
responsive: true,
maintainAspectRatio: false,
}
}
});