Is it possible to achieve a scrollable legend in AmCharts 4 similar to this AmCharts 3 tutorial? With the absence of legend.divId
in AmCharts 4, controlling legend size seems challenging as it is all rendered as a single SVG element with limited control using
chart.legend.height = am4core.percent(50);
.
Could creating a separate container and attaching the legend using legend.parent = container;
be a solution? Attempts so far have been unsuccessful.
Want to try out a current attempt? Check out this codepen.