Highcharts会增加显示图表的高度

时间:2017-02-03 18:16:03

标签: highcharts

我需要增加highcharts的大小,即;高度参数。

我使用的是plotAreaHeight参数,但是它没有工作,即;高度保持不变。

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

这是我的小提琴。

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

1 个答案:

答案 0 :(得分:1)

据我所知LinktoCity(city: string){ let mainLink = "www..." window.open(mainLink+city); } 不是配置选项。

设置图表高度的两种方法:

1)使用plotAreaHeight属性:

height

更新小提琴:

2)设置包含div的高度

chart: {
  height: 800
}

更新小提琴: