Skip to content

Commit 1659666

Browse files
committed
Improvement - VueUiDonut - Add stroke to marker circles
1 parent d962b9b commit 1659666

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/vue-ui-donut.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -989,6 +989,8 @@ defineExpose({
989989
:cx="calcMarkerOffsetX(arc).x"
990990
:cy="calcMarkerOffsetY(arc) - 3.5"
991991
:fill="arc.color"
992+
:stroke="FINAL_CONFIG.style.chart.backgroundColor"
993+
:stroke-width="1"
992994
:r="3"
993995
:filter="!FINAL_CONFIG.useBlurOnHover || [null, undefined].includes(selectedSerie) || selectedSerie === i ? ``: `url(#blur_${uid})`"
994996
@click="selectDatapoint(arc, i)"
@@ -1000,6 +1002,8 @@ defineExpose({
10001002
:cx="offsetFromCenterPoint({initX: polarAreas[i].middlePoint.x, initY: polarAreas[i].middlePoint.y, offset: 24, centerX: svg.width / 2, centerY: svg.height / 2}).x"
10011003
:cy="offsetFromCenterPoint({initX: polarAreas[i].middlePoint.x, initY: polarAreas[i].middlePoint.y, offset: 24, centerX: svg.width / 2, centerY: svg.height / 2}).y"
10021004
:fill="arc.color"
1005+
:stroke="FINAL_CONFIG.style.chart.backgroundColor"
1006+
:stroke-width="1"
10031007
:r="3"
10041008
:filter="!FINAL_CONFIG.useBlurOnHover || [null, undefined].includes(selectedSerie) || selectedSerie === i ? ``: `url(#blur_${uid})`"
10051009
@click="selectDatapoint(arc, i)"

0 commit comments

Comments
 (0)