如何在 Google 图表中隐藏标签?

How can I hide labels in Google Chart?

我是 Google chart 的新手,我正在努力学习它。

我有


这是我的选择

      var options = {
          width: 400,
          height: 240,
          colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6']

      };

Fiddle

如何隐藏标签:工作,吃饭?

是的....我找到了。我意识到只需要添加另一个选项 legend: 'none',

      var options = {
          width: 400,
          height: 240,
          colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6'],
          legend: 'none'
      };