@@ -709,9 +709,9 @@ export function getEchartsConfig(
709709 width : props . progressBarWidth ,
710710 color : [ [ 1 , props ?. clockGaugeOption ?. data ?. map ( data => data . outlineColor ) [ 0 ] ] ] ,
711711 shadowColor : props ?. chartStyle ?. chartShadowColor || theme ?. chartStyle ?. shadowColor ,
712- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
713- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
714- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
712+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
713+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
714+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
715715 }
716716 } ,
717717 axisTick : {
@@ -720,9 +720,9 @@ export function getEchartsConfig(
720720 width : props . axisTickWidth ,
721721 color : props . axisTickColor ,
722722 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
723- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
724- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
725- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
723+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
724+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
725+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
726726 }
727727 } ,
728728 splitLine : {
@@ -731,9 +731,9 @@ export function getEchartsConfig(
731731 width : Number ( props . axisTickWidth ) * 1.5 ,
732732 color : props . axisTickColor ,
733733 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
734- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
735- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
736- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
734+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
735+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
736+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
737737 }
738738 } ,
739739 axisLabel : {
@@ -754,9 +754,9 @@ export function getEchartsConfig(
754754 itemStyle : {
755755 color : props ?. clockGaugeOption ?. data ?. map ( data => data . hour ) [ 0 ] ?. color ,
756756 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
757- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
758- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
759- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
757+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
758+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
759+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
760760 }
761761 } ,
762762 detail : {
@@ -799,9 +799,9 @@ export function getEchartsConfig(
799799 itemStyle : {
800800 color : props ?. clockGaugeOption ?. data ?. map ( data => data . minute ) [ 0 ] ?. color ,
801801 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
802- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
803- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
804- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
802+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
803+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
804+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
805805 }
806806 } ,
807807 detail : {
@@ -845,9 +845,9 @@ export function getEchartsConfig(
845845 itemStyle : {
846846 color : props ?. clockGaugeOption ?. data ?. map ( data => data . second ) [ 0 ] ?. color ,
847847 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
848- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
849- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
850- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
848+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
849+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
850+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
851851 }
852852 } ,
853853 anchor : {
@@ -857,9 +857,9 @@ export function getEchartsConfig(
857857 itemStyle : {
858858 color : props ?. clockGaugeOption ?. data ?. map ( data => data . anchor ) [ 0 ] ?. color ,
859859 shadowColor : props ?. chartStyle ?. chartShadowColor + "55" || theme ?. chartStyle ?. shadowColor + "55" ,
860- shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
861- shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
862- shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
860+ shadowBlur : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 0 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 0 ] ,
861+ shadowOffsetX : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 1 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 1 ] ,
862+ shadowOffsetY : props ?. chartStyle ?. chartBoxShadow ?. split ( 'px' ) [ 2 ] || theme ?. chartStyle ?. boxShadow && theme ?. chartStyle ?. boxShadow ?. split ( 'px' ) [ 2 ]
863863 }
864864 } ,
865865 detail : {
0 commit comments