Hi guys,
I have tried to follow the docs for adding custom colors to charts but they are a bit incomplete: https://www.phpdocx.com/api-documentation/word-content/add-chart-Word-document-with-PHP
This part here:
    'theme' => array(
        'serRgbColors' => array(null, 'FF00FF', '00FFFF'),
        'valueRgbColors' => array(
            array('FF0000'),
            null,
            array(null, null, '00FF00'),
        ),
    ),
I am trying to set the colors for a pie chart - 2 different colors for 2 series - how would i do that?
Regards