我构建的数据项如下所示:
data.push({ x: moment(new Date(e.StartDate)).week(), y: e.title, label:`${e.title} ${e.type} ${e.percentage}%` });
如何编写自定义工具提示回调以显示标签字符串?
nwsw7zdq1#
Chart.js文档显示了自定义工具提示的完整说明:http://www.chartjs.org/docs/latest/configuration/tooltip.html#external-custom-tooltips以及示例:http://www.chartjs.org/samples/latest/tooltips/custom-line.htmlhttp://www.chartjs.org/samples/latest/tooltips/custom-pie.htmlhttp://www.chartjs.org/samples/latest/tooltips/custom-points.html
1条答案
按热度按时间nwsw7zdq1#
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