user2586964
user2586964

Reputation: 75

Is it possible to change the title colour of the Pie chart using Google Charts?

Is there any way to change the title colour of the Pie Chart using Google Charts APIS?

Cheers, Simon

Upvotes: 3

Views: 5819

Answers (1)

asgallant
asgallant

Reputation: 26340

Set the titleTextStyle.color option (it accepts an HTML color string):

titleTextStyle: {
    color: '#a34f8b'
}

Upvotes: 8

Related Questions