PieChartDeviceSub.vue
2.02 KB
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
<template>
<div v-show="dataSeries.length" ref="chartRef" :style="{ height, width }"></div>
<div v-show="!dataSeries.length"><Empty :image="Empty.PRESENTED_IMAGE_SIMPLE" /></div>
</template>
<script lang="ts">
import { defineComponent, PropType, ref, Ref, onMounted, toRefs } from 'vue';
import { useECharts } from '/@/hooks/web/useECharts';
import { Empty } from 'ant-design-vue';
export default defineComponent({
components: { Empty },
props: {
width: {
type: String as PropType<string>,
default: '100%',
},
height: {
type: String as PropType<string>,
default: '200px',
},
legendData: {
type: Array,
default: () => [],
},
seriesData: {
type: Array,
default: () => [],
},
},
setup(props) {
const { legendData, seriesData } = toRefs(props);
const dataSeries = ref<any>([]);
const legendDatas = ref<any>([]);
dataSeries.value = seriesData.value;
legendDatas.value = legendData.value;
const chartRef = ref<HTMLDivElement | null>(null);
const { setOptions, resize } = useECharts(chartRef as Ref<HTMLDivElement>);
onMounted(() => {
setOptions({
backgroundColor: '#ffffff',
tooltip: {
trigger: 'item',
formatter: '{b} {d}%',
},
legend: {
bottom: 0,
width: 500,
height: 200,
left: 'center',
data: legendDatas,
},
series: [
{
type: 'pie',
radius: '60%',
data: dataSeries,
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)',
},
},
},
],
});
//自适应
window.addEventListener('resize', () => resize());
});
return { chartRef, Empty, dataSeries };
},
});
</script>