1. #1
    Sencha User
    Join Date
    Aug 2012
    Posts
    7
    Vote Rating
    0
    GUPTA.221 is on a distinguished road

      0  

    Default Unanswered: Bar chart is not getting displayed

    Unanswered: Bar chart is not getting displayed


    Hello Guys,

    I am trying to display a bar chart through OData content but it is not getting rendered on the UI. However no error has been thrown. Could you figure out an issue in the following code(In a view). This view has been triggered from app.js file.

    Ext.define('MyApp.view.BarChart', {


    extend: 'Ext.chart.Chart',


    requires: ['Ext.chart.series.Series','MyApp.chart.Panel', 'Ext.chart.Chart', 'Ext.chart.Panel','Ext.chart.axis.Numeric',
    'Ext.chart.axis.Category','Ext.chart.series.Area','Ext.chart.theme.Base','Ext.chart.theme.Style'],


    config: {
    style:'background-color:lightgrey;',
    store:'Orders',
    // renderTo: Ext.getBody(),
    width: 500,
    height: 300,
    animate: true,
    items: [{
    axes: [
    {
    xtype: 'Numeric',
    position: 'bottom',
    fields: ['TOTALNETAMOUNT_E'],
    label: {
    renderer: function (v) {
    return v.toFixed(0);
    }
    },
    title: 'Total Net Amount',
    grid: true,
    minimum: 0
    },
    {
    xtype: 'Category',
    position: 'left',
    fields: ['SOLDTOPARTYNAME'],
    title: 'Sold to party'
    }
    ],
    series: [
    {
    xtype: 'bar',
    xField: 'SOLDTOPARTYNAME',
    yField: ['TOTALNETAMOUNT_E'],
    axis: 'bottom',
    highlight: true,
    }
    ]
    }]
    }
    });

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,656
    Vote Rating
    435
    Answers
    3107
    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 charts from the 2.1.0 releases?
    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.