-
19 Oct 2012 4:59 AM #1
Custom namespace for Chart themes
Custom namespace for Chart themes
Hi,
I'm learning how to use the Charting module of ExtJS 4.1.1, and I was wondering if I could create my own themes using my application's namespace (Kiwi).
My folder structure is this :
So I was wondering if I could define my themes like this :Code:app/
controller/ model/ store/ view/chart/themes/
And then give some parameter to the chart, so he can find the themeCode:Kiwi.view.chart.theme.Custom = Ext.extend(Ext.chart.theme.Base, { constructor: function(config) { Ext.chart.theme.Base.prototype.constructor.call(this, Ext.apply({ colors: colors }, config)); } });
Any advice appreciated.
Thanks.
Romain
-
23 Oct 2012 6:07 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,119
- Vote Rating
- 453
They currently have to have the Ext.chart.theme namespace.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
25 Oct 2012 1:11 AM #3
OK, thanks for the info !


Reply With Quote