Panel.js 382 B

12345678910111213141516171819
  1. Ext.define('school.view.analysis.attence.Panel', {
  2. extend: 'Ext.panel.Panel',
  3. xtype: 'analysis-attence',
  4. viewModel: 'analysis-attence',
  5. layout: 'responsivecolumn',
  6. scrollable: true,
  7. defaults: {
  8. userCls: 'big-50 small-100',
  9. padding: 10
  10. },
  11. items: [{
  12. xtype: 'attence-chart1'
  13. }, {
  14. xtype: 'attence-chart2'
  15. }]
  16. });