fix(图表-仪表盘): 修复百分比刻度显示不正确的问题

This commit is contained in:
jianneng-fit2cloud 2024-09-04 19:31:42 +08:00
parent 186339cc82
commit 1133f0863b

View File

@ -266,8 +266,7 @@ export class Gauge extends G2PlotChartView<GaugeOptions, G2Gauge> {
return ''
}
if (gaugePercentLabel === false) {
const val = v === '0' ? min : v === '1' ? max : min + (max - min) * v
return valueFormatter(val, labelFormatter)
return v === '0' ? min : v === '1' ? max : min + (max - min) * v
}
return v === '0' ? v : v * 100 + '%'
}