隐藏在Google图表中的图例
我正在使用Google图表API。 有没有办法隐藏散点图的图例?
您可以通过使用'none'作为位置来禁用图例:
legend: {position: 'none'}
有点干净的方式是
legend: 'none'
在我的情况下,我使用:
库:{legend:{position:'none'}}
pie_chart @type_values, library:{legend:{position:'none'}}
它不是从API那里出现,你只能设置一个位置,没有“none”的选项。 如果你可以识别包含的元素,你可以使用javascript来移除它。
编辑:它实际上显示,就好像你可以省略chdl =参数来得到一个无图例分散。