Blame view

Yi.Vben5.Vue3/apps/web-antd/src/views/dashboard/analytics/analytics-trends.vue 2.03 KB
515fceeb   “wangming”   框架初始化
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  <script lang="ts" setup>
  import type { EchartsUIType } from '@vben/plugins/echarts';
  
  import { EchartsUI, useEcharts } from '@vben/plugins/echarts';
  import { onMounted, ref } from 'vue';
  
  const chartRef = ref<EchartsUIType>();
  const { renderEcharts } = useEcharts(chartRef);
  
  onMounted(() => {
    renderEcharts({
      grid: {
        bottom: 0,
        containLabel: true,
        left: '1%',
        right: '1%',
        top: '2 %',
      },
      series: [
        {
          areaStyle: {},
          data: [
            111, 2000, 6000, 16_000, 33_333, 55_555, 64_000, 33_333, 18_000,
            36_000, 70_000, 42_444, 23_222, 13_000, 8000, 4000, 1200, 333, 222,
            111,
          ],
          itemStyle: {
            color: '#5ab1ef',
          },
          smooth: true,
          type: 'line',
        },
        {
          areaStyle: {},
          data: [
            33, 66, 88, 333, 3333, 6200, 20_000, 3000, 1200, 13_000, 22_000,
            11_000, 2221, 1201, 390, 198, 60, 30, 22, 11,
          ],
          itemStyle: {
            color: '#019680',
          },
          smooth: true,
          type: 'line',
        },
      ],
      tooltip: {
        axisPointer: {
          lineStyle: {
            color: '#019680',
            width: 1,
          },
        },
        trigger: 'axis',
      },
      // xAxis: {
      //   axisTick: {
      //     show: false,
      //   },
      //   boundaryGap: false,
      //   data: Array.from({ length: 18 }).map((_item, index) => `${index + 6}:00`),
      //   type: 'category',
      // },
      xAxis: {
        axisTick: {
          show: false,
        },
        boundaryGap: false,
        data: Array.from({ length: 18 }).map((_item, index) => `${index + 6}:00`),
        splitLine: {
          lineStyle: {
            type: 'solid',
            width: 1,
          },
          show: true,
        },
        type: 'category',
      },
      yAxis: [
        {
          axisTick: {
            show: false,
          },
          max: 80_000,
          splitArea: {
            show: true,
          },
          splitNumber: 4,
          type: 'value',
        },
      ],
    });
  });
  </script>
  
  <template>
    <EchartsUI ref="chartRef" />
  </template>