mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
fix: modify echart bg color
This commit is contained in:
parent
efc1ccbc9a
commit
5fb8881763
@ -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() {
|
||||||
|
@ -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',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user