google 图表控件包装器
google charts controlwrapper
我想更改控件的高度,但它不起作用。
这是我到目前为止尝试过的:
var control = new google.visualization.ControlWrapper({
controlType: 'ChartRangeFilter',
containerId: 'control_div',
height: 55, //placing it here is not working
options: {
filterColumnIndex: 0,
height: 55, //neither does it here
ui: {
labelStacking: 'vertical',
chartType: 'LineChart',
snapToData: true,
height: 55, //or here
},
}
});
我的代码有什么问题?
应该在这里 --> options.ui.chartOptions.height
options: {
ui: {
chartOptions: {
height: 55
}
}
}
ui
用于控件,chartOptions
用于它显示的图表
我想更改控件的高度,但它不起作用。
这是我到目前为止尝试过的:
var control = new google.visualization.ControlWrapper({
controlType: 'ChartRangeFilter',
containerId: 'control_div',
height: 55, //placing it here is not working
options: {
filterColumnIndex: 0,
height: 55, //neither does it here
ui: {
labelStacking: 'vertical',
chartType: 'LineChart',
snapToData: true,
height: 55, //or here
},
}
});
我的代码有什么问题?
应该在这里 --> options.ui.chartOptions.height
options: {
ui: {
chartOptions: {
height: 55
}
}
}
ui
用于控件,chartOptions
用于它显示的图表