我正在构建我的数据项:
data.push({ x: moment(new Date(e.StartDate)).week(), y: e.title, label:`${e.title} ${e.type} ${e.percentage}%` });
如何编写自定义工具提示回调以显示标签字符串?
答案 0 :(得分:0)
Chart.js文档显示自定义工具提示的完整说明:
http://www.chartjs.org/docs/latest/configuration/tooltip.html#external-custom-tooltips
以及例子:
http://www.chartjs.org/samples/latest/tooltips/custom-line.html
http://www.chartjs.org/samples/latest/tooltips/custom-pie.html
http://www.chartjs.org/samples/latest/tooltips/custom-points.html