Skip to content

Commit 8ea52e5

Browse files
committed
Improvement - VueUiQuickChart - Add stroke to marker circles in donut mode
1 parent 1659666 commit 8ea52e5

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/components/vue-ui-quick-chart.vue

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -961,14 +961,6 @@ defineExpose({
961961
/>
962962
</template>
963963
</g>
964-
965-
<circle
966-
class="donut-hollow"
967-
:cx="(FINAL_CONFIG.width || defaultSizes.width) / 2"
968-
:cy="(FINAL_CONFIG.height || defaultSizes.height) /2"
969-
:r="(FINAL_CONFIG.height || defaultSizes.height) * FINAL_CONFIG.donutRadiusRatio"
970-
:fill="FINAL_CONFIG.backgroundColor"
971-
/>
972964

973965
<circle
974966
:cx="donut.cx"
@@ -1003,6 +995,8 @@ defineExpose({
1003995
:cx="calcMarkerOffsetX(arc).x"
1004996
:cy="calcMarkerOffsetY(arc) - 3.7"
1005997
:fill="arc.color"
998+
:stroke="FINAL_CONFIG.backgroundColor"
999+
:stroke-width="1"
10061000
:r="3"
10071001
:filter="getBlurFilter(arc.id)"
10081002
/>

0 commit comments

Comments
 (0)