I am using sigmajs with some linkurious plugin for my graph. I implemented a tooltip and its working but the position seems off place. I have the position set to "left" for the tooltip but it still doesn't change. I've tried all other positions as well.
node: [{
show: 'clickNode',
hide: 'clickStage',
//cssClass: 'sigma-tooltip',
position: 'left',
...
In my case, the problem was that the plugin thought the position of my div container was static. So, it wasn't computing the right relative value for some reason (in Chrome 58.0.x).
I did a quick hack in the sigma.plugins.tooltips.js (I had to find the non-min version so that's it's readable) to fix it like so: