jquery - Is it possible to reparent the high charts legend? -
i using high charts library, , want move legend entry off chart , container in side bar.
anyone know if possible?
i tried this, styles on place:
chart = new highcharts.chart({ chart: { .... events: { load: function (event) { $(".highcharts-legend").appendto("#legendcontainer"); } }
the legend drawn using svg. instead of re-parenting div
reparent svg
element.
<svg id="legendcontainer" class="highcharts-container"></svg>
fiddle here.
edits
recent versions of highcharts position legend using svg transform
, might have remove reparent work correctly. updated fiddle.
Comments
Post a Comment