extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
21 lines (19 loc) • 537 B
JavaScript
Ext.define('KitchenSink.view.charts.combination.theme.CustomTheme', {
extend: 'Ext.chart.theme.Base',
singleton: true,
alias: ['chart.theme.custom-theme'],
config: {
axis: {
defaults: {
style: {
strokeStyle: '#7F8C8D'
},
label: {
fillStyle: '#7F8C8D',
fontSize: 18
}
}
},
colors: [ '#1ABC9C', '#F1C40F', '#3498DB', '#C0392B', '#9B59B6' ]
}
});