UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

82 lines (73 loc) 1.82 kB
Ext.define('Admin.view.dashboard.Sales', { extend: 'Ext.Panel', xtype: 'sales', ui: 'light', requires: [ 'Ext.chart.CartesianChart', 'Ext.chart.axis.Category', 'Ext.chart.axis.Numeric', 'Ext.chart.series.Bar' ], height: 130, layout: 'fit', title: 'Sales', cls: 'quick-graph-panel', header: { docked: 'bottom' }, platformConfig: { '!phone': { iconCls: 'x-fa fa-briefcase' } }, items: [ { xtype: 'cartesian', animation : !Ext.isIE9m && Ext.os.is.Desktop, background: '#8561c5', height: '100%', width: '100%', colors: [ '#ffffff' ], bind: '{quarterlyGrowth}', axes: [ { type: 'category', fields: [ 'xvalue' ], hidden: true, position: 'bottom' }, { type: 'numeric', fields: [ 'yvalue' ], grid: { odd: { fill: '#e8e8e8' } }, hidden: true, position: 'left' } ], series: [ { type: 'bar', xField: 'xvalue', yField: [ 'yvalue' ] } ], interactions: [ { type: 'panzoom' } ] } ] });