1. #1
    Sencha User
    Join Date
    Oct 2012
    Posts
    53
    Vote Rating
    0
    sandeepmnit35 is on a distinguished road

      0  

    Default hidden true not working

    hidden true not working


    I am trying below code and want to hide the chart at the starting and later on button click I want to show it but it is not hiding the chart.

    HTML Code:
    Ext.define('RA.view.Panel1', {
        extend: 'Ext.Panel',
        xtype: 'panel1',
        requires: [
                   'Ext.chart.Panel'
        ],
        config: {
            id: 'Panel1',
            layout: {type: 'vbox', pack: 'center'},
            flex: 1,
            style: "background-color: black; color:white",
            items: [
                    {
                        xtype: 'chart',
                hidden: true,
                        id: 'chart1',
                        //html: "<h1 style = 'color: red'>To configure this chart, tap this panel, click Settings to select axes, chart type, granularity, etc., then click Select Dates to select start and end dates.</h1>"
                    },
                                    
                    {
                        xtype: 'button',
                        html: 'Add chart',
                        ui: 'confirm',
                        id:'chart1Button',
                        style: 'font-size: 14px; margin-left: 60px; margin-right: 60px; margin-top: 5px; margin-bottom: 5px;',                                
                    },
            ]
        }
    });
    I tried below code to hide the chart in app.js but it is not hiding the chart :

    var charts = Ext.ComponentQuery.query('#Panel1 > chart');
    Ext.Array.each(charts, function(chart){

    if (chart.getId()=='chart1')
    {
    alert(chart.getId());

                chart.hide();
    }
    });

  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


    This using the deprecated Touch Charts 2 beta or the new charts within ST 2.1.0?
    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
    Oct 2012
    Posts
    53
    Vote Rating
    0
    sandeepmnit35 is on a distinguished road

      0  

    Default


    Chart beta 2.0

Tags for this Thread