Canvas tooltip to appear outside canvas?
I have made the following using KineticJS and D3.js. I have used KineticJS to let me popup tooltips when the user hovers over one of the dots. However, the tooltip appears cut off because of the boundaries of the canvas. Is there a way I can make this appear without it getting clipped? The entire code itself is pretty huge and contains a lot of unrelated stuff so I posted the relevant snippets: this.stage = new Kinetic.Stage({ container: 'canvas', width: this.WIDTH, height: this.HEIGHT }); this.circlesLayer = new Kinetic.Layer(); this.tooltipLayer = new Kinetic.Layer(); this.stage.reset();