我尝试了以下代码 -
var fin = function () {
// this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
this.flag = r.popup(this.bar.x, 280, this.bar.y || "0").insertBefore(this);
};
var fout = function () {
this.flag.animate({opacity: 0}, 200, function () {this.remove();});
};
. . .
r.barchart(10, 10, 900, 300, [[55, 20, 13, 32]], 0, {type: "sharp"}).hover(fin, fout);
它在 raphael 示例页面中运行良好 - http://g.raphaeljs.com/barchart2.html
但在我的页面中,工具提示黑色背景是“跳跃”每个鼠标。[工具提示文本保持在正确的 x,y]
我使用了错误的库吗?我如何解决它?