code-8
code-8

Reputation: 58632

How can I hide labels in Google Chart?

I'm new to Google chart, and I'm trying to learn it.

I have

enter image description here


Here is my option

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

      };

Fiddle

How do I hide the label : Work, Eat ?

Upvotes: 3

Views: 2917

Answers (1)

code-8
code-8

Reputation: 58632

Yes.... I found it. I realize that just need to add another option legend: 'none',

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

enter image description here

Upvotes: 6

Related Questions