Highcharts: How to display multiple tooltips by click in multiple series with shared true -
i search way display tooltip permanently, when tooltip shared. these points important:
- click on point --> tooltip cloned , displayed permanently
- click on same point again, clone removed
- multiple tooltips allowed displayed @ same time
thanks.
as sebastian pointed out in comment - clone tooltip.
when tooltip has usehtml
set false (by default does), need clone svg element. see similar topic: link
when usehtml
set true div element created , appended container of chart. need clone not svg frame, html's div. issue check cloned tooltips x, because tooltip shared.
example: http://jsfiddle.net/7vkzv/14/
when usehtml true html overflow other svg elements - avoid style html div tooltip text , remove visible style in svg tooltip. in other words - make tooltip in pure html.
example: http://jsfiddle.net/7vkzv/15/
Comments
Post a Comment