extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
44 lines (38 loc) • 1 kB
JavaScript
Ext.define('Admin.view.charts.Charts', {
extend: 'Ext.Container',
xtype: 'charts',
requires: [
'Admin.view.charts.ChartsModel'
],
cls: 'dashboard',
viewModel: {
type: 'charts'
},
scrollable: true,
items: [
{
xtype: 'chartsareapanel',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'chartspie3dpanel',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'chartspolarpanel',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'chartsstackedpanel',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'chartsbarpanel',
userCls: 'big-50 small-100 dashboard-item shadow'
},
{
xtype: 'chartsgaugepanel',
userCls: 'big-50 small-100 dashboard-item shadow'
}
]
});