Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 vaadin 插件来显示一些图表,并且我有这样的方法可用:setFormatterJsFunc 并且我不确定它可以使用什么样的变量。
有没有人遇到过这个?
谢谢
它的输入是一个javascript函数,当您将鼠标悬停在图表中的某个点上时,它会显示那里的值。
javascript
例如;
tooltip.setFormatterJsFunc("function() {" + " return '' + this.series.name +': '+ this.y +''; " + "}");