@@ -1084,7 +1084,7 @@ defineExpose({
10841084 :data-cy =" `donut-arc-${i}`"
10851085 :d =" arc.arcSlice"
10861086 :fill =" arc.color"
1087- :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1087+ :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
10881088 :stroke-width =" FINAL_CONFIG.style.chart.layout.donut.borderWidth"
10891089 :filter =" getBlurFilter(i)"
10901090 />
@@ -1093,14 +1093,14 @@ defineExpose({
10931093 <path v-for =" (arc, i) in noGhostDonut" class =" vue-ui-donut-arc-path"
10941094 :data-cy =" `donut-arc-pattern-${arc.patternIndex}`" :d =" arc.arcSlice"
10951095 :fill =" `url(#${arc.pattern})`"
1096- :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1096+ :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
10971097 :stroke-width =" FINAL_CONFIG.style.chart.layout.donut.borderWidth" :filter =" getBlurFilter(i)" />
10981098 </g >
10991099 </template >
11001100
11011101 <template v-if =" total && FINAL_CONFIG .type === ' polar' " >
11021102 <g v-if =" currentDonut.length > 1" >
1103- <path v-for =" (arc, i) in noGhostDonut" :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1103+ <path v-for =" (arc, i) in noGhostDonut" :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
11041104 :d =" polarAreas[i].path" fill =" #FFFFFF"
11051105 :style =" {
11061106 transition: isFirstLoad || !FINAL_CONFIG.serieToggleAnimation.show ? 'none' : `all ${FINAL_CONFIG.serieToggleAnimation.durationMs}ms ease-in-out`
@@ -1109,7 +1109,7 @@ defineExpose({
11091109 <g v-if =" FINAL_CONFIG.style.chart.layout.donut.useShadow" >
11101110 <path data-cy =" polar-shadow" v-for =" (_arc, i) in noGhostDonut" class =" vue-ui-donut-arc-path"
11111111 :d =" polarAreas[i].path" :fill =" 'transparent'"
1112- :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1112+ :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
11131113 :stroke-width =" FINAL_CONFIG.style.chart.layout.donut.borderWidth"
11141114 :filter =" `url(#drop_shadow_${uid})`"
11151115 :style =" {
@@ -1122,7 +1122,7 @@ defineExpose({
11221122 <path v-for =" (arc, i) in noGhostDonut" class =" vue-ui-donut-arc-path"
11231123 :data-cy =" `polar-arc-${arc.patternIndex}`" :d =" polarAreas[i].path"
11241124 :fill =" `url(#${arc.pattern})`"
1125- :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1125+ :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
11261126 :stroke-width =" FINAL_CONFIG.style.chart.layout.donut.borderWidth"
11271127 :filter =" getBlurFilter(i)"
11281128 :style =" {
@@ -1133,7 +1133,7 @@ defineExpose({
11331133 <path v-for =" (arc, i) in noGhostDonut" class =" vue-ui-donut-arc-path" :data-cy =" `donut-arc-${i}`"
11341134 :d =" polarAreas[i].path"
11351135 :fill =" FINAL_CONFIG.style.chart.useGradient ? `url(#polar_gradient_${i}_${uid})` : arc.color"
1136- :stroke =" FINAL_CONFIG.style.chart.backgroundColor"
1136+ :stroke =" FINAL_CONFIG.style.chart.layout.donut.borderColorAuto ? FINAL_CONFIG.style.chart. backgroundColor : FINAL_CONFIG.style.chart.layout.donut.borderColor "
11371137 :stroke-width =" FINAL_CONFIG.style.chart.layout.donut.borderWidth" :filter =" getBlurFilter(i)"
11381138 :style =" {
11391139 transition: isFirstLoad || !FINAL_CONFIG.serieToggleAnimation.show ? 'none' : `all ${FINAL_CONFIG.serieToggleAnimation.durationMs}ms ease-in-out`
0 commit comments