Google 控件和信息中心 - 更改占位符值



我需要更改Google图表类别过滤器的默认占位符值。任何人都可以指定我该怎么做吗?

最后,

我找到了满足我需求的答案。在选项中添加以下属性让我回家了。

 var categoryPicker = new google.visualization.ControlWrapper({
      'controlType': 'CategoryFilter',
      'containerId': 'control2',
      'options': {
        'filterColumnLabel': 'Project',
        'ui': {
        'labelStacking': 'vertical',
        'caption':'Select Project',
          'allowTyping': true,
          'allowMultiple': true
        }
      }
    });

标题属性起到了作用。

相关内容

  • 没有找到相关文章

最新更新