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) { function update(updateOptions: ECOption) {
if (isRendered.value) if (isRendered.value)
chart!.setOption({ ...updateOptions }) chart!.setOption({ backgroundColor: 'transparent', ...updateOptions })
} }
function destroy() { function destroy() {

View File

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