在条形图Raphael上添加标签

时间:2011-12-18 18:57:05

标签: javascript raphael labels

我想从barchart为每个栏添加一个标签,为每个栏生成一个dinamic链接。 attr(href:“http://site.com/label”。当我调用label()方法时,debuger告诉我实习方法不存在。

这是我对标签条形图的要求:

paper.barchart(x, y, sizeX, sizeY, date, attr).hover(fin, fout).attr({opacity: .5}).label(["positive", "negative", "neutre", ""], date);

这是来自firebug的错误

    l.labelise is not a function
label(y=["positive", "negative", "neutre", ""], Z=[41, 33, 26, 100])g.bar-min.js (line 7)
chartBar(paper=a { customAttributes={...}, ca={...}, width=900, more...}, x=550, y=680, sizeX=100, sizeY=150, date=[41, 33, 26, 100])slider.js (line 267)
textSlider()slider.js (line 337)
f(b=Document details.html, f=[function()])jquery-1.7.min.js (line 2)
f(b=Document details.html, c=[function()])jquery-1.7.min.js (line 2)
f(a=undefined)jquery-1.7.min.js (line 2)
f()jquery-1.7.min.js (line 2)
[Break On This Error] (function(){var f=Math.min,a=Math.max;...){return new d(this,h,l,j,g,i,k)}})();
g.bar-min.js (line 7)

这似乎是库中的错误。知道任何人为每个酒吧生成一个dinamic链接的方法吗?

稍后修改:http://jsfiddle.net/devth/rKjEj/2/

谢谢!

1 个答案:

答案 0 :(得分:1)

我找到的解决方案如下:

paper.barchart(/*parameters*/).each(function (){
          this.attr({ href: "your/address" }); 
})

L.E。:http://jsfiddle.net/urmelinho/rKjEj/22/