I can't seem to get any of these options to work. I've tried:
SELECT 'dbr.chart.options', 'label_color', 'Label text', '0x006BA4', '0xFF800E', '0xABABAB', '0x595959', '0x5F9ED1', '0xC85200', '0x898989', '0xA2C8EC', '0xFFBC79', '0xCFCFCF';
and adding the following to the user/default.php file just makes all of the mydbr interface blank
$mydbr_defaults['chart']['colors'] = (0x0099CC,0xF6BD0F,0x8BBA00,0xA66EDD,0xF984A1,0xCCCC00,0x999999,0xAFD8F8,0xFF0000,0x006F00,0x0099FF,0xFF66CC,0x669966,0x7C7CB4,0xFF9933,0x9900FF,0x99FFCC,0xCCCCFF,0x669900,0x1941A5);
$mydbr_defaults['chart']['colors'] = ('0x0099CC','0xF6BD0F','0x8BBA00','0xA66EDD','0xF984A1','0xCCCC00','0x999999','0xAFD8F8','0xFF0000','0x006F00','0x0099FF','0xFF66CC','0x669966','0x7C7CB4','0xFF9933','0x9900FF','0x99FFCC','0xCCCCFF','0x669900','0x1941A5');
$mydbr_defaults['chart']['colors'] = '0x0099CC','0xF6BD0F','0x8BBA00','0xA66EDD','0xF984A1','0xCCCC00','0x999999','0xAFD8F8','0xFF0000','0x006F00','0x0099FF','0xFF66CC','0x669966','0x7C7CB4','0xFF9933','0x9900FF','0x99FFCC','0xCCCCFF','0x669900','0x1941A5';
In all cases, the colour of the graph bars (and labels) don't change.
Could there be something else overriding this?