Skip to content

Commit 0a6296e

Browse files
committed
Fix - VueUiDonut - Remove excess % symbol in tooltip
1 parent 5392f08 commit 0a6296e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/vue-ui-donut.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ function useTooltip({datapoint, relativeIndex, seriesIndex, show = false}) {
467467
);
468468
469469
if(!FINAL_CONFIG.value.style.chart.tooltip.showValue) {
470-
html += `<b>${percentageLabel}%</b></div>`;
470+
html += `<b>${percentageLabel}</b></div>`;
471471
} else {
472472
html += `<span>(${percentageLabel})</span></div>`;
473473
}

0 commit comments

Comments
 (0)