diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 8821973..0f257e7 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -24,6 +24,7 @@ import { OrgGraphsService } from './providers/org-graphs.service';
import { CustGraphsService } from './providers/cust-graphs.service';
import { OrgSnippetsService } from './providers/org-snippets.service';
import { CustSnippetsService } from './providers/cust-snippets.service';
+import { CustPiesService } from './providers/cust-pies.service';
// Layouts
import { FullLayoutComponent } from './layouts/full-layout.component';
@@ -69,6 +70,7 @@ import { DashboardModule } from './dashboard/dashboard.module';
OrgSnippetsService,
CustGraphsService,
CustSnippetsService,
+ CustPiesService,
{
provide: LocationStrategy,
useClass: HashLocationStrategy
diff --git a/src/app/dashboard/dashboard-customer.component.html b/src/app/dashboard/dashboard-customer.component.html
index c1fdcf6..3b9f793 100644
--- a/src/app/dashboard/dashboard-customer.component.html
+++ b/src/app/dashboard/dashboard-customer.component.html
@@ -12,8 +12,151 @@
+
+
+
+
+
+
+
Purchases Per Week
+
+
+
+
+ -
+ This Week
+ 191,235 (56%)
+
+
+ -
+ Last Week
+ 51,223 (15%)
+
+
+ -
+ 2 Weeks Ago
+ 37,564 (11%)
+
+
+ -
+ 3 Weeks Ago
+ 27,319 (8%)
+
+
+
+
+
+
+
+
+
+
+
+
+
Sector Purchase Amounts
+
+
+
+
+ -
+
+
+
Sector A
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
1.924
+
+
+ -
+
+
+
Sector B
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
1.224
+
+
+ -
+
+
+
Sector C
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
1.163
+
+
+ -
+
+
+
Sector D
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
928
+
+
+ -
+
+
+
Sector E
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
893
+
+
+ -
+
+
+
Sector F
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
121.924
+
+
+ -
+
+
+
Sector G
+
Lorem ipsum dolor sit amet
+
+
+
Bought this week
+
12.125
+
+
+
+
+
+
+
+
diff --git a/src/app/dashboard/dashboard-customer.component.ts b/src/app/dashboard/dashboard-customer.component.ts
index 68c4913..87b5419 100644
--- a/src/app/dashboard/dashboard-customer.component.ts
+++ b/src/app/dashboard/dashboard-customer.component.ts
@@ -26,18 +26,6 @@ export class DashboardCustomerComponent implements OnInit {
public polarAreaChartType = 'polarArea';
public widgetList = [
- {
- type: 'graph',
- name: 'total_today',
- title: 'Total Today',
- dataType: DataType.currency,
- },
- {
- type: 'graph',
- name: 'avg_spend_today',
- title: 'Avg. Spend Today',
- dataType: DataType.currency,
- },
{
type: 'graph',
name: 'total_last_week',
@@ -64,18 +52,6 @@ export class DashboardCustomerComponent implements OnInit {
title: 'Last Month Avg. Spend',
dataType: DataType.currency,
},
- {
- type: 'graph',
- name: 'total_user',
- title: 'User Total',
- dataType: DataType.currency,
- },
- {
- type: 'graph',
- name: 'avg_spend_user',
- title: 'User Avg. Spend',
- dataType: DataType.currency,
- },
];
constructor(
diff --git a/src/app/panels/pie-panel.component.html b/src/app/panels/pie-panel.component.html
index 291c778..bb90dff 100644
--- a/src/app/panels/pie-panel.component.html
+++ b/src/app/panels/pie-panel.component.html
@@ -16,8 +16,8 @@