Google Charts:我如何更改“选择一个值...”在controlType:ControlWrapper的CategoryFilter中
我需要知道如何更改 ControlType: CategoryFilter 中的 ControlWrapper 中的“选择一个值...”
示例:
// Define a category picker control for the Gender column
var categoryPicker = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'control2',
'options': {
'filterColumnLabel': 'Sexo',
'ui': {
'labelStacking': 'vertical',
'allowTyping': false,
'allowMultiple': false,
}
},
'state': {'selectedValues': ['']} // this don't solve my problem
});
这向我显示一个如下所示的选择框:
[选择一个值...]
[ 男士 ]
[女人]
我需要这个:
[选择性别...]
[ 男士 ]
[女]
谢谢!
I need know how change "Choose a value..." in controlType: CategoryFilter of ControlWrapper
Example:
// Define a category picker control for the Gender column
var categoryPicker = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'control2',
'options': {
'filterColumnLabel': 'Sexo',
'ui': {
'labelStacking': 'vertical',
'allowTyping': false,
'allowMultiple': false,
}
},
'state': {'selectedValues': ['']} // this don't solve my problem
});
This show me one select box like this:
[ Choose a value...]
[ Man ]
[ Woman ]
And I need this:
[ Choose sex...]
[ Man ]
[ Woman ]
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
ui.caption
< /a> 选项可更改未选择任何内容时显示的值。更改:
至:
You can use the
ui.caption
option to change the value displayed when nothing is selected.Change:
to: