I am encountering an issue with my nvd3 chart. When I have a large amount of data that exceeds the width of the chart container, there is no scroll bar present and I'm struggling to figure out how to add one.
I attempted to include overflow:scroll
within the div.chartwrapper
wrapper.
<div class="chartwrapper" ng-app="app-origin" ng-controller="ctrl">
<nvd3 options="options2" data="data2"></nvd3>
</div>
and also within the chart itself
<nvd3 options="options2" data="data2" class="ng-isolate-scope"><svg height="450px" width="100%"
Any suggestions on how I can implement a scroll bar in the chart to view all of the data that has been inputted?