I'm making a chart using google charts and I want to change the title color.
My graphic settings are via 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 searched through titleTextStyle.color that changes the color, but I'm not able to implement using json.
I also tried: 'titleTextStyle: {color:' = > 'white' '}',