隐藏 Google 图表中的图例

发布于 2024-10-20 07:06:19 字数 41 浏览 1 评论 0原文

我正在使用 Google 图表 API。有没有办法隐藏散点图的图例?

I am using the Google charts API. Is there a way to hide the legend for a scatter plot?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

暖风昔人 2024-10-27 07:06:19

您可以通过使用“none”作为位置来禁用图例:

legend: {position: 'none'}

You can disable the legend by using 'none' as the position:

legend: {position: 'none'}

人间不值得 2024-10-27 07:06:19

更干净一点的方法是

legend: 'none'

A bit cleaner way is

legend: 'none'
半世蒼涼 2024-10-27 07:06:19
var options = {
               title: 'USA City Distribution',
               legend: 'none'
              };

drawChart() 函数中,在图表选项对象中添加 legend: none 属性

var options = {
               title: 'USA City Distribution',
               legend: 'none'
              };

In drawChart() function, Add legend: none property in your chart options object

沦落红尘 2024-10-27 07:06:19

就我而言,我使用:

library: {legend:{position:'none'}}

pie_chart @type_values,库:{legend:{position:'none'}}

In my case I use:

library: {legend:{position:'none'}}

pie_chart @type_values,library: {legend:{position:'none'}}

忆离笙 2024-10-27 07:06:19

从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文