我想将工具提示添加到chart.js中的雷达图表。
所以我试过三种方式:
第一
var options = Chart.defaults.global = {showToolTips:true};
new Chart(ctx).Radar(data,options);
第二
new Chart(ctx).Radar(data,{showTooltips:true);
第三
在此,我将showTooltips:true
添加到我项目的chart.min.js中雷达图表的全局属性中。
Uncaught TypeError: Cannot read property 'global' of undefined
我被卡住了。请帮忙!
提前谢谢!
答案 0 :(得分:0)
Aren的工具提示默认显示在chart.js中?
检查库本身提供的样本:https://github.com/nnnick/Chart.js/blob/master/samples/radar.html