tickwave
tickwave

Reputation: 3443

how to increase Y-Axis height in Highcharts

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?

enter image description here

My JSFiddle : http://jsfiddle.net/ngendk2o/3/

Upvotes: 2

Views: 2047

Answers (1)

Kabulan0lak
Kabulan0lak

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

Related Questions