Reputation: 75
Is there any way to change the title colour of the Pie Chart using Google Charts APIS?
Cheers, Simon
Upvotes: 3
Views: 5819
Reputation: 26340
Set the titleTextStyle.color
option (it accepts an HTML color string):
titleTextStyle: {
color: '#a34f8b'
}
Upvotes: 8