diff --git a/PartEleven/cartracker/app/controller/Dashboard.js b/PartEleven/cartracker/app/controller/Dashboard.js index b058ac0..dea31b6 100644 --- a/PartEleven/cartracker/app/controller/Dashboard.js +++ b/PartEleven/cartracker/app/controller/Dashboard.js @@ -8,7 +8,10 @@ Ext.define('CarTracker.controller.Dashboard', { 'report.Months' ], views: [ - 'executive.Dashboard' + 'executive.Dashboard', + 'report.make.Chart', + 'report.month.Chart', + 'car.List' ], init: function() { this.listen({ diff --git a/PartEleven/cartracker/app/view/executive/Dashboard.js b/PartEleven/cartracker/app/view/executive/Dashboard.js index 8373b7f..ef91a95 100644 --- a/PartEleven/cartracker/app/view/executive/Dashboard.js +++ b/PartEleven/cartracker/app/view/executive/Dashboard.js @@ -1,9 +1,6 @@ Ext.define('CarTracker.view.executive.Dashboard', { extend: 'Ext.panel.Panel', alias: 'widget.executive.dashboard', - requires: [ - 'Ext.layout.container.Column' - ], layout: 'border', initComponent: function() { var me = this; @@ -26,7 +23,6 @@ Ext.define('CarTracker.view.executive.Dashboard', { items: [ { xtype: 'report.month.chart', - legend: false, store: { type: 'report.month' } @@ -62,7 +58,6 @@ Ext.define('CarTracker.view.executive.Dashboard', { { xtype: 'car.list', dockedItems: false, - autoScroll: true, anchor: '100% 50%', title: 'Audits Awaiting Approval', iconCls: 'icon_workflow', @@ -105,7 +100,6 @@ Ext.define('CarTracker.view.executive.Dashboard', { { xtype: 'report.make.chart', title: 'Sales by Make', - legend: false, store: { type: 'report.make' } diff --git a/README.md b/README.md index e5d9aed..6109a7d 100644 --- a/README.md +++ b/README.md @@ -41,4 +41,8 @@ Reports and Charts Part Ten -------- -Workflow and History \ No newline at end of file +Workflow and History + +Part Eleven +----------- +Executive Dashboard \ No newline at end of file