We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcc151c commit 768fea2Copy full SHA for 768fea2
src/minicharts/d3-tip.js
@@ -66,8 +66,8 @@
66
}
67
coords = direction_callbacks.get(dir).apply(this);
68
nodel.classed(dir, true).style({
69
- top: (coords.top + poffset[0]) + scrollTop + 'px',
70
- left: (coords.left + poffset[1]) + scrollLeft + 'px'
+ top: (coords.top + poffset[0] + scrollTop).toString() + 'px',
+ left: (coords.left + poffset[1] + scrollLeft).toString() + 'px'
71
});
72
73
return tip;
0 commit comments