下面的代码工作:
tooltipOpts: {
content: "%s : %y",
shifts: {
x: -30,
y: -50
}
}
我想,以显示“内容”的一些动态计算数据,因此想使用的功能。 即使是我最基本的例子不工作,我得到如下错误:
tooltipOpts: {
content: function() {
return "%s : %y";
},
shifts: {
x: -30,
y: -50
}
}
Uncaught TypeError: Object function () {
return "%s : %y";
} has no method 'replace'