I found this while trying to solve a similar problem: Rally chart documentation
If you use the updateBeforeRender parameter, you can refer to Highcharts, in particular to the method:
Highcharts.setOptions();
that you need to use something like a gray theme.
Here's what my chart configurator looks like:
App.down('#chartContain').add({ xtype: 'rallychart', updateBeforeRender: function() { Highcharts.theme = {...} Highcharts.setOptions(Highcharts.theme); } ... }
Copy the theme code from the Highcharts documentation, and you should be good to go!
source share