我使用的是Chart.js 3.8.0。
我正在尝试创建自定义工具提示文本。
new Chart($('#truck-dwell'), {
type: 'scatter',
data: {
datasets: [{
label: 'Dwell Time (Minutes)',
data: response,
backgroundColor: Colors.Red,
}],
},
options: {
scales: {
x: {
type: 'linear',
position: 'bottom'
}
},
plugins: {
tooltips: {
callbacks: {
label: function(ctx) {
return 'Hello, World!';
}
}
}
}
}
});
虽然我发现有几个来源说这是更新的第3版语法,但我的label函数上的断点显示它从未被调用。
我错过了什么?
1条答案
按热度按时间vzgqcmou1#
您的工具提示:属性名称标签错误,应为工具提示:。