Reputation: 3443
I need to deal with large array data in Highcharts and I need to increase the height in Y-Axis
and width in X-Axis
with scrollbar. How to do this?
My JSFiddle : http://jsfiddle.net/ngendk2o/3/
Upvotes: 2
Views: 2047
Reputation: 2136
You can manually increase the height
and width
of your chart. For example, use:
chart: {
/* ... */,
height: 800,
width: 2000
}
It will automatically add scroll-bars to your page.
See your JSFiddle here: http://jsfiddle.net/ngendk2o/4/
Upvotes: 2