Reputation: 20856
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
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