@@ -16,6 +16,8 @@ export const ExecutiveDashboard: Dashboard = {
1616 label : 'Executive Overview' ,
1717 description : 'High-level revenue, customer, and pipeline KPIs for leadership' ,
1818
19+ columns : 12 ,
20+ gap : 4 ,
1921 refreshInterval : 300 , // 5 minutes
2022
2123 header : {
@@ -157,8 +159,8 @@ export const ExecutiveDashboard: Dashboard = {
157159 showLegend : false ,
158160 showDataLabels : false ,
159161 colors : [ '#10B981' ] ,
160- xAxis : { field : 'close_date' , title : 'Month' , showGridLines : false } ,
161- yAxis : [ { field : 'amount' , title : 'Revenue' , format : '$0,0' , showGridLines : true } ] ,
162+ xAxis : { field : 'close_date' , title : 'Month' , showGridLines : false , logarithmic : false } ,
163+ yAxis : [ { field : 'amount' , title : 'Revenue' , format : '$0,0' , showGridLines : true , logarithmic : false } ] ,
162164 interaction : { tooltips : true , zoom : false , brush : true } ,
163165 } ,
164166 options : { dateGranularity : 'month' } ,
@@ -219,8 +221,8 @@ export const ExecutiveDashboard: Dashboard = {
219221 showLegend : false ,
220222 showDataLabels : true ,
221223 colors : [ '#8B5CF6' ] ,
222- xAxis : { field : 'created_date' , title : 'Month' , showGridLines : false } ,
223- yAxis : [ { field : 'count' , title : 'New accounts' , showGridLines : true } ] ,
224+ xAxis : { field : 'created_date' , title : 'Month' , showGridLines : false , logarithmic : false } ,
225+ yAxis : [ { field : 'count' , title : 'New accounts' , showGridLines : true , logarithmic : false } ] ,
224226 } ,
225227 options : { dateGranularity : 'month' } ,
226228 } ,
0 commit comments