Commit e364d8bdfffb4f5f08d5db3e5493de6ce1396df9
Merge branch 'perf/chart' into 'main_dev'
perf(src/packages/components): 优化图表,默认数值隐藏 See merge request yunteng/thingskit-view!237
Showing
6 changed files
with
7 additions
and
7 deletions
... | ... | @@ -11,7 +11,7 @@ export const barSeriesItem = { |
11 | 11 | type: 'bar', |
12 | 12 | barWidth: 15, |
13 | 13 | label: { |
14 | - show: true, | |
14 | + show: false, | |
15 | 15 | position: 'top', |
16 | 16 | color: '#fff', |
17 | 17 | fontSize: 12 |
... | ... | @@ -26,7 +26,7 @@ export const lineSeriesItem = { |
26 | 26 | type: 'line', |
27 | 27 | symbol: 'circle', |
28 | 28 | label: { |
29 | - show: true, | |
29 | + show: false, | |
30 | 30 | position: 'top', |
31 | 31 | color: '#fff', |
32 | 32 | fontSize: 12 | ... | ... |