1. #1
    Sencha Premium Member
    Join Date
    Feb 2012
    Location
    Toulouse, France
    Posts
    7
    Vote Rating
    0
    Squ36 is on a distinguished road

      0  

    Default 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 :

    Code:
    app/
    controller/ model/ store/ view/
    chart/
    themes/
    So I was wondering if I could define my themes like this :
    Code:
    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));
        }
    });
    And then give some parameter to the chart, so he can find the theme

    Any advice appreciated.

    Thanks.

    Romain

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    34,107
    Vote Rating
    453
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    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.

  3. #3
    Sencha Premium Member
    Join Date
    Feb 2012
    Location
    Toulouse, France
    Posts
    7
    Vote Rating
    0
    Squ36 is on a distinguished road

      0  

    Default


    OK, thanks for the info !

Tags for this Thread