Reputation: 58632
I'm new to Google chart, and I'm trying to learn it.
I have
Here is my option
var options = {
width: 400,
height: 240,
colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6']
};
How do I hide the label : Work, Eat ?
Upvotes: 3
Views: 2917
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'
};
Upvotes: 6