隐藏 Google 图表中的图例
我正在使用 Google 图表 API。有没有办法隐藏散点图的图例?
I am using the Google charts API. Is there a way to hide the legend for a scatter plot?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以通过使用“none”作为位置来禁用图例:
legend: {position: 'none'}
You can disable the legend by using 'none' as the position:
legend: {position: 'none'}
更干净一点的方法是
A bit cleaner way is
在
drawChart()
函数中,在图表选项对象中添加legend: none
属性In
drawChart()
function, Addlegend: none
property in your chart options object就我而言,我使用:
library: {legend:{position:'none'}}
In my case I use:
library: {legend:{position:'none'}}
从 API 来看并没有,你只能设置一个位置,没有“none”选项。如果您可以识别包含元素,您可能可以使用 javascript 删除它。
编辑:实际上看起来好像您可以省略 chdl= 参数来获得没有图例的散点图。
It doesn't appear so from the API, you can only set a position, with no option for "none". You could probably remove it with javascript though, if you can identify the containing element.
Edit: it actually appears as though you can omit the chdl= parameter to get a scatter without a legend.