Lines Matching full:bb
47 …this.bb = paper.text(x,(y+style.txtsize/2)+10,text).attr({"font-size":style.tooltip.txtsize,"fill"…
48 var BB = this.bb.getBBox();
50 // BB.y is automatically updated
51 this.bb.translate(0,BB.height/2);
53 …this.tp = paper.rect(BB.x-4,BB.y-2,BB.width+8,BB.height+4).attr({"fill":style.tooltip.bgr,"stroke"…
57 this.bb.hide();
61 this.bb.show().toFront();
65 this.bb.hide();
363 var BB = txt.getBBox();
364 …paper.rect(BB.x,BB.y,BB.width,BB.height).attr({"stroke":"none","fill":style.bgr}).toBack();//backg…
415 BB = t.getBBox();//bounding box
417 …if(!style.note.align||style.note.align=="left")t.attr({"x":BB.x,"text-anchor":"start"});//left ali…
419 else if(style.note.align=="right")t.attr({"x":BB.x+BB.width,"text-anchor":"end"});//right align
422 BB.x-style.note.margin,
423 BB.y-style.note.margin,
424 BB.width+style.note.margin*2,
425 BB.height+style.note.margin*2,