File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/views/dashboard/metrics Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ a-card.metrics-chart(:bordered="false")
173
173
// Don't filter out null values - let ECharts handle them with connectNulls: false
174
174
175
175
// Determine if we should show symbols based on data point count
176
- const shouldShowSymbols = localChartType .value === ' scatter' || data .length <= 50
176
+ const shouldShowSymbols = localChartType .value === ' scatter' || data .length <= 20
177
177
let symbolSize = 0
178
178
if (shouldShowSymbols ) {
179
179
symbolSize = localChartType .value === ' scatter' ? 6 : 5
@@ -261,10 +261,10 @@ a-card.metrics-chart(:bordered="false")
261
261
top: 660 - gridBottom + 20 ,
262
262
},
263
263
grid: {
264
- left: ' 2% ' ,
265
- right: ' 2% ' ,
264
+ left: 30 ,
265
+ right: 30 ,
266
266
bottom: gridBottom , // Dynamic bottom margin based on series count
267
- top: ' 3% ' ,
267
+ top: 30 ,
268
268
containLabel: true ,
269
269
},
270
270
dataZoom: [
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ a-layout.new-layout
320
320
box-shadow : none ;
321
321
}
322
322
.new-layout {
323
- height : 100vh ;
323
+ height : calc ( 100vh - 29 px ) ;
324
324
background : #fff ;
325
325
}
326
326
You can’t perform that action at this time.
0 commit comments