0
I’m making a chart using google Harts and want to change the title color.
My chart settings are through a json file:
'config' => array(
'title' => 'Despesas',
'width' => 400,
'height' => 300,
'backgroundColor' => 'transparent',
'colors' => ['#AA8E26', 'grey', 'blue', 'orange'],
'legend.alignment' => 'center',
'is3D' => 'true',
'titleTextStyle' => 'color', 'white',
)
);
I researched that it is through titleTextStyle.color that changes the color, but I am not able to implement using json.
I also tried to: 'titleTextStyle: {color:' => 'white' '}',