user1050619
user1050619

Reputation: 20856

Highcharts increase height of the chart displayed

I need to increase the size of the highcharts, ie; the height parameter.

I'm using the plotAreaHeight parameter but it is not working ie; the height remains the same.

                chart: {
                  // type: 'bar',
        plotAreaHeight: 800,

Here is my fiddle.

https://jsfiddle.net/cucjw7xc/8/

Upvotes: 1

Views: 2416

Answers (1)

jlbriggs
jlbriggs

Reputation: 17791

As far as I am aware plotAreaHeight is not a configuration option.

Two ways to set the height of your chart:

1) use the height property:

chart: {
  height: 800
}

Updated Fiddle:

2) Set the height on your containing div

#container: {
  height: 800px;
}

Updated Fiddle:

Upvotes: 3

Related Questions