import { defineConfig } from '@/utils/common' export const pieSeriesMapping = defineConfig({ default: { radius: '72%', emphasis: { itemStyle: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)', }, }, label: { fontSize: 10, }, }, circle: { radius: ['52%', '86%'], itemStyle: { borderRadius: 8, borderColor: 'rgba(255, 255, 255, 0.6)', borderWidth: 1.8, }, label: { show: false, position: 'center', }, labelLine: { show: false, }, emphasis: { label: { show: true, fontSize: '16', fontWeight: 'bold', }, }, }, }) export const polylineSeriesMapping = defineConfig({ default: { symbol: 'circle', type: 'line', lineStyle: { width: 1.2, }, }, })