forked from github/dataease
Merge pull request #12027 from dataease/pr@dev-v2@chart-gauge-fix
fix(图表-仪表盘): 修复百分比刻度显示不正确的问题
This commit is contained in:
commit
cffe216f89
@ -266,8 +266,7 @@ export class Gauge extends G2PlotChartView<GaugeOptions, G2Gauge> {
|
|||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
if (gaugePercentLabel === false) {
|
if (gaugePercentLabel === false) {
|
||||||
const val = v === '0' ? min : v === '1' ? max : min + (max - min) * v
|
return v === '0' ? min : v === '1' ? max : min + (max - min) * v
|
||||||
return valueFormatter(val, labelFormatter)
|
|
||||||
}
|
}
|
||||||
return v === '0' ? v : v * 100 + '%'
|
return v === '0' ? v : v * 100 + '%'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user