1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| import type { EChartsOption } from '@vben/plugins/echarts';
|
| /** 袋码生成趋势柱状图配置 */
| export function getBagCodeTrendChartOptions(
| dates: string[],
| counts: number[],
| ): EChartsOption {
| return {
| grid: { bottom: 40, left: 50, right: 20, top: 20 },
| legend: { bottom: 0, data: ['袋码生成量'] },
| series: [
| {
| barMaxWidth: 32,
| data: counts,
| itemStyle: { borderRadius: 4, color: '#409EFF' },
| name: '袋码生成量',
| type: 'bar',
| },
| ],
| tooltip: { axisPointer: { type: 'shadow' }, trigger: 'axis' },
| xAxis: { axisTick: { show: false }, data: dates, type: 'category' },
| yAxis: { minInterval: 1, type: 'value' },
| };
| }
|
| /** 状态分布环形图配置 */
| export function getStatusChartOptions(
| data: Array<{ itemStyle: { color: string }; name: string; value: number }>,
| ): EChartsOption {
| return {
| legend: { bottom: 0, type: 'scroll' },
| series: [
| {
| avoidLabelOverlap: true,
| data,
| emphasis: { label: { fontSize: 14, fontWeight: 'bold', show: true } },
| itemStyle: { borderColor: '#fff', borderRadius: 6, borderWidth: 2 },
| label: { formatter: '{b}\n{c}', show: true },
| radius: ['40%', '70%'],
| type: 'pie',
| },
| ],
| tooltip: { formatter: '{b}: {c} ({d}%)', trigger: 'item' },
| };
| }
|
|