1. #1
    Sencha User
    Join Date
    Jan 2012
    Posts
    30
    Vote Rating
    0
    TrexXx is on a distinguished road

      0  

    Default Treemap not working

    Treemap not working


    Hi,

    I'm trying to use the treemap chart with a in memory TreeStore and it does not work, here is my code :

    Code:
    Ext.setup({
        onReady: function() {
            new Ext.chart.Panel({
                fullscreen: true,
                chart: new Ext.chart.Chart({
                    store: new Ext.data.TreeStore({
                        fields: ['name', 'area', 'children', 'id'],
                        data: {
                            name: 'Budget',
                            area: 1,
                            id: 'root',
                            children: [{
                                name: 'Defense',
                                id: 'defense',
                                area: 0.5,
                                children: []
                            }, {
                                name: 'Education',
                                id: 'education',
                                area: 0.3,
                                children: []
                            }, {
                                name: 'Debt',
                                id: 'debt',
                                area: 0.2,
                                children: []
                            }]
                        },
                        proxy: 'memory'
                    }),
                    series: [{
                        type: 'treemap',
                        layout: 'squarified',
                        orientation: 'horizontal',
                        rootName: 'Budget',
                        titleField: 'name',
                        areaField: 'area'
                    }]
                })
            });
        }
    });
    Can you tell what am I missing ? Thanks

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,666
    Vote Rating
    435
    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


    For the TreeStore you shouldn't use the data config, you should use the root config.
    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 User
    Join Date
    Jan 2012
    Posts
    30
    Vote Rating
    0
    TrexXx is on a distinguished road

      0  

    Default


    Thanks for you answer, I tried to change data to root in my store but it does not change anything :

    Code:
    Ext.setup({
        onReady: function() {
            new Ext.chart.Panel({
                fullscreen: true,
                chart: new Ext.chart.Chart({
                    store: new Ext.data.TreeStore({
                        fields: ['name', 'area', 'children', 'id'],
                        root: {
                            name: 'Budget',
                            area: 1,
                            id: 'root',
                            children: [{
                                name: 'Défense',
                                id: 'defense',
                                area: 0.5,
                                children: []
                            }, {
                                name: 'Education',
                                id: 'education',
                                area: 0.3,
                                children: []
                            }, {
                                name: 'Dette',
                                id: 'debt',
                                area: 0.2,
                                children: []
                            }]
                        },
                        proxy: 'memory'
                    }),
                    series: [{
                        type: 'treemap',
                        layout: 'squarified',
                        orientation: 'horizontal',
                        rootName: 'Budget',
                        titleField: 'name',
                        areaField: 'area'
                    }]
                })
            });
        }
    });

  4. #4
    Sencha User
    Join Date
    Jan 2012
    Posts
    30
    Vote Rating
    0
    TrexXx is on a distinguished road

      0  

    Default


    For those of you who might have the problem I just forgot to include the offset property in my serie.