使用功能()来创建动态响应(Using function() to create dynamic r

2019-10-19 06:24发布

下面的代码工作:

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' 

Answer 1:

我假设你正在使用的工具提示插件,从这里开始。 我编写了一个小提琴例子, 在这里 ,使用该function的格式content属性。 请注意,您的回调签名不正确是:

content: function(label, xval, yval, flotItem){ // expects to pass these arguments
    return "%s : %y";
},

但即使没有这些争论,我无法重现你的错误。



文章来源: Using function() to create dynamic response
标签: jquery flot