我需要更改 Google 图表类别过滤器的默认占位符值。谁能指定我该怎么做?
问问题
143 次
1 回答
1
最后我找到了我需要的答案。在选项中添加以下属性让我回家了。
var categoryPicker = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'control2',
'options': {
'filterColumnLabel': 'Project',
'ui': {
'labelStacking': 'vertical',
'caption':'Select Project',
'allowTyping': true,
'allowMultiple': true
}
}
});
标题属性起到了作用。
于 2012-10-10T07:33:37.967 回答