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
| <script setup lang="ts">
| import type { EChartsOption } from 'echarts';
|
| // import * as echarts from 'echarts';
| import { onMounted, ref } from 'vue';
|
| import {
| EchartsUI,
| type EchartsUIType,
| useEcharts,
| } from '@vben/plugins/echarts';
|
| import { browserInfoList } from '../api';
|
| defineOptions({ name: 'Browser' });
|
| const browserRef = ref<EchartsUIType>();
| const { renderEcharts } = useEcharts(browserRef);
|
| onMounted(async () => {
| const data = await browserInfoList();
| const options: EChartsOption = {
| legend: {
| left: 'left',
| orient: 'vertical',
| },
| series: [
| {
| data,
| emphasis: {
| itemStyle: {
| shadowBlur: 10,
| shadowColor: 'rgba(0, 0, 0, 0.5)',
| shadowOffsetX: 0,
| },
| },
| // 百分比
| label: {
| formatter: '{b}: {c} - ({d}%)', // 自定义显示格式(b:name, c:value, d:百分比)
| show: true,
| },
| radius: '50%',
| type: 'pie',
| },
| ],
| title: {
| left: 'center',
| text: '使用浏览器占比',
| },
| tooltip: {
| trigger: 'item',
| },
| };
| renderEcharts(options);
| });
| </script>
|
| <template>
| <EchartsUI ref="browserRef" height="720px" width="100%" />
| </template>
|
| <style scoped></style>
|
|