Im using dc.js to render amongts other things a piechart which has a legend. However when the piechart contains a lot of data all the legend items does not fit and they are simply hidden. I can tell they are rendered if i inspect the DOM.
Screenshot of my problem:
I've tried simply adding a overflow:scroll;
to the <g class="dc-legend">
element which holds all the legend items. But that does not work obv since its svg.
I've tried googling around for this but have not come accross a solution. I know in highcharts there is an option to paginate the label.
How to solve this issue in dc.js?