我需要增加highcharts的大小,即;高度参数。
我使用的是plotAreaHeight参数,但是它没有工作,即;高度保持不变。
chart: {
// type: 'bar',
plotAreaHeight: 800,
这是我的小提琴。
答案 0 :(得分:1)
据我所知LinktoCity(city: string){
let mainLink = "www..."
window.open(mainLink+city);
}
不是配置选项。
设置图表高度的两种方法:
1)使用plotAreaHeight
属性:
height
更新小提琴:
2)设置包含div的高度
chart: {
height: 800
}
更新小提琴: