See this DEMO
When hovering on the beginning or end of the X axis, the red dot that marks the position on graph, is getting cut off (either from left or right, respectively).
Any way to avoid this?
Try with the clipPath option.
bb.generate({
...,
clipPath: false
});
EDIT:
onafterinit
options as below, and will work as expected.onafterinit: function() {
this.mainArea.node().parentNode
.setAttribute("clip-path",
this.getClipPath.bind({config:{clipPath:true}})(this.clipId)
);
}