We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e891e0e commit 7a33605Copy full SHA for 7a33605
src/components/vue-ui-gauge.vue
@@ -471,7 +471,7 @@ const gradientArcs = computed(() => {
471
});
472
473
const gaugeArc = computed(() => {
474
- const added = min.value >= 0 ? 0 : Math.abs(min.value);
+ const added = min.value >= 0 ? -min.value : Math.abs(min.value);
475
return createHalfCircleArc({
476
radius: FINAL_CONFIG.value.style.chart.layout.indicatorArc.radius * svg.value.trackSize,
477
centerX: svg.value.width / 2,
0 commit comments