Skip to content

Commit 946e0b4

Browse files
committed
Fix - VueUiDonutEvolution - Fix donut markers too short in hover mode
1 parent 24df781 commit 946e0b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/vue-ui-donut-evolution.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ defineExpose({
678678
<g v-for="arc in datapoint.donutHover">
679679
<path
680680
:data-cy="`donut_hover_${i}`"
681-
:d="calcNutArrowPath(arc, {x: arc.center.endX, y: arc.center.endY}, 12, 12, { x: datapoint.x, y: datapoint.y}, true)"
681+
:d="calcNutArrowPath(arc, {x: arc.center.endX, y: arc.center.endY}, 12, 12, { x: datapoint.x, y: datapoint.y}, true, 20)"
682682
:stroke="arc.color"
683683
stroke-width="1"
684684
stroke-linecap="round"

0 commit comments

Comments
 (0)