fix: modify echart bg color

This commit is contained in:
chansee97 2024-08-24 00:42:45 +08:00
parent efc1ccbc9a
commit 5fb8881763
2 changed files with 1 additions and 5 deletions

View File

@ -92,7 +92,7 @@ export function useEcharts(el: Ref<HTMLElement | null>, chartOptions: Ref<ECOpti
function update(updateOptions: ECOption) {
if (isRendered.value)
chart!.setOption({ ...updateOptions })
chart!.setOption({ backgroundColor: 'transparent', ...updateOptions })
}
function destroy() {

View File

@ -7,7 +7,6 @@ const pieOptions = ref<ECOption>({
title: {
text: '饼图',
},
backgroundColor: 'transparent',
color: [
'#37a2da',
'#32c5e9',
@ -83,7 +82,6 @@ const lineOptions = ref<ECOption>({
title: {
text: '折线图',
},
backgroundColor: 'transparent',
tooltip: {
trigger: 'axis',
axisPointer: {
@ -276,7 +274,6 @@ const barOptions = ref<ECOption>({
title: {
text: '柱状图',
},
backgroundColor: 'transparent',
tooltip: {},
grid: {
top: '8%',
@ -418,7 +415,6 @@ const radarOptions = ref<ECOption>({
title: {
text: 'Multiple Radar',
},
backgroundColor: 'transparent',
tooltip: {},
legend: {
left: 'center',