@@ -10,6 +10,7 @@ export const ExecutiveDashboard: Dashboard = {
1010 widgets : [
1111 // Row 1: Revenue Metrics
1212 {
13+ id : 'total_revenue_ytd' ,
1314 title : 'Total Revenue (YTD)' ,
1415 type : 'metric' ,
1516 object : 'opportunity' ,
@@ -20,6 +21,7 @@ export const ExecutiveDashboard: Dashboard = {
2021 options : { prefix : '$' , color : '#00AA00' }
2122 } ,
2223 {
24+ id : 'total_accounts' ,
2325 title : 'Total Accounts' ,
2426 type : 'metric' ,
2527 object : 'account' ,
@@ -29,6 +31,7 @@ export const ExecutiveDashboard: Dashboard = {
2931 options : { color : '#4169E1' }
3032 } ,
3133 {
34+ id : 'total_contacts' ,
3235 title : 'Total Contacts' ,
3336 type : 'metric' ,
3437 object : 'contact' ,
@@ -37,6 +40,7 @@ export const ExecutiveDashboard: Dashboard = {
3740 options : { color : '#9370DB' }
3841 } ,
3942 {
43+ id : 'total_leads' ,
4044 title : 'Total Leads' ,
4145 type : 'metric' ,
4246 object : 'lead' ,
@@ -48,6 +52,7 @@ export const ExecutiveDashboard: Dashboard = {
4852
4953 // Row 2: Revenue Analysis
5054 {
55+ id : 'revenue_by_industry' ,
5156 title : 'Revenue by Industry' ,
5257 type : 'bar' ,
5358 object : 'opportunity' ,
@@ -58,6 +63,7 @@ export const ExecutiveDashboard: Dashboard = {
5863 layout : { x : 0 , y : 2 , w : 6 , h : 4 } ,
5964 } ,
6065 {
66+ id : 'quarterly_revenue_trend' ,
6167 title : 'Quarterly Revenue Trend' ,
6268 type : 'line' ,
6369 object : 'opportunity' ,
@@ -71,6 +77,7 @@ export const ExecutiveDashboard: Dashboard = {
7177
7278 // Row 3: Customer & Activity Metrics
7379 {
80+ id : 'new_accounts_by_month' ,
7481 title : 'New Accounts by Month' ,
7582 type : 'bar' ,
7683 object : 'account' ,
@@ -81,6 +88,7 @@ export const ExecutiveDashboard: Dashboard = {
8188 options : { dateGranularity : 'month' }
8289 } ,
8390 {
91+ id : 'lead_conversion_rate' ,
8492 title : 'Lead Conversion Rate' ,
8593 type : 'metric' ,
8694 object : 'lead' ,
@@ -90,6 +98,7 @@ export const ExecutiveDashboard: Dashboard = {
9098 options : { suffix : '%' , color : '#00AA00' }
9199 } ,
92100 {
101+ id : 'top_accounts_by_revenue' ,
93102 title : 'Top Accounts by Revenue' ,
94103 type : 'table' ,
95104 object : 'account' ,
0 commit comments