diff --git a/src/hooks/useEcharts.ts b/src/hooks/useEcharts.ts index 6ecc0c4..3000838 100644 --- a/src/hooks/useEcharts.ts +++ b/src/hooks/useEcharts.ts @@ -92,7 +92,7 @@ export function useEcharts(el: Ref, chartOptions: Ref({ title: { text: '饼图', }, + backgroundColor: 'transparent', color: [ '#37a2da', '#32c5e9', @@ -53,15 +54,36 @@ const pieOptions = ref({ ], }, ], -}) as Ref +}) const pieRef = ref(null) -useEcharts(pieRef, pieOptions) +const { update } = useEcharts(pieRef, pieOptions) + +const randomValue = () => Math.round(Math.random() * 100) +function updatePieChart() { + pieOptions.value.series = [ + { + data: [ + { value: randomValue(), name: 'rose1' }, + { value: randomValue(), name: 'rose2' }, + { value: randomValue(), name: 'rose3' }, + { value: randomValue(), name: 'rose4' }, + { value: randomValue(), name: 'rose5' }, + { value: randomValue(), name: 'rose6' }, + { value: randomValue(), name: 'rose7' }, + { value: randomValue(), name: 'rose8' }, + ], + }, + ] + + update(pieOptions.value) +} // 折线图 const lineOptions = ref({ title: { text: '折线图', }, + backgroundColor: 'transparent', tooltip: { trigger: 'axis', axisPointer: { @@ -245,7 +267,7 @@ const lineOptions = ref({ data: [820, 932, 901, 934, 1290, 1330, 1320], }, ], -}) as Ref +}) const lineRef = ref(null) useEcharts(lineRef, lineOptions) @@ -254,6 +276,7 @@ const barOptions = ref({ title: { text: '柱状图', }, + backgroundColor: 'transparent', tooltip: {}, grid: { top: '8%', @@ -386,7 +409,7 @@ const barOptions = ref({ data: [200, 382, 102, 267, 186, 315, 316], }, ], -}) as Ref +}) const barRef = ref(null) useEcharts(barRef, barOptions) @@ -395,6 +418,7 @@ const radarOptions = ref({ title: { text: 'Multiple Radar', }, + backgroundColor: 'transparent', tooltip: {}, legend: { left: 'center', @@ -480,7 +504,7 @@ const radarOptions = ref({ ], }, ], -}) as Ref +}) const radarRef = ref(null) useEcharts(radarRef, radarOptions) @@ -491,6 +515,9 @@ useEcharts(radarRef, radarOptions) :size="16" > + + 手动更新图表 +