Google chart API - legend color pie legend.textStyle

Starting with the official example for a pie chart.
I can’t change the color of the legend.

'legend.textStyle': { 'color': 'gray' } 

Not taken into account.
Please check out fiddle
Am I doing something wrong?

+4
source share
2 answers

I could not even get your answer to the work. Instead, I used the following:

 legend: {textStyle: {color: 'gray'}} 
+7
source

it

 legend: {textStyle: {color: 'gray'}} 

instead

 'legend.textStyle': { 'color': 'gray' } 
+1
source

Source: https://habr.com/ru/post/1396432/


All Articles