У меня на графике нормально работает я. Событие mouseover работало нормально, но когда я добавил событие click, оно не выполняет событие click так, как я хотел.
Ниже мои коды:
var vis = new pv.Panel()
.width(w)
.height(h);
vis.add(pv.Bar)
.data(data)
.width(4)
.left(function() 5 * this.index)
.height(function(d) Math.round(d*4))
.bottom(0)
.text(function(d) d.toFixed(1))
.event("mouseover", pv.Behavior.tipsy({gravity: "w", fade: true}))
//If I remove the mouseover event, the click event will work but not when both are veing put together.
.event("click", function() self.location = "http://stanford.edu");
vis.render();
Может кто-нибудь помочь мне решить эту проблему? Спасибо.