NEZ-3116 fix:Dashboard中创建图表使用双Y轴时,Legend的Values不为空时,图表中Value值不正确

This commit is contained in:
zhangyu
2023-08-23 10:30:44 +08:00
parent 713ba2ab59
commit 95a0ca75c4

View File

@@ -40,7 +40,7 @@
<span v-else :style="{background: item.color}" class="legend-shape"></span>
<span :title="item.alias ? item.alias : item.name">{{item.alias ? item.alias : item.name}}</span>
</div>
<div v-for="(statistics, index) in item.statistics" :key="index" :class="{'legend-item--inactive': isGrey[index]}" class="legend--table-cell">{{(keepTwoDecimalFull(statistics.value))}}</div>
<div v-for="(statistics, index) in item.statistics" :key="index" :class="{'legend-item--inactive': isGrey[index]}" class="legend--table-cell">{{(keepTwoDecimalFull(statistics.value, 'right'))}}</div>
</div>
</div>
</template>
@@ -243,12 +243,16 @@ export default {
this.$emit('clickLegendD3', this.isGrey)
},
// 四舍五入保留2位小数不够位数则用0替补
keepTwoDecimalFull (num) {
keepTwoDecimalFull (num, type = 'left') {
let chartUnit = this.chartInfo.unit
if (type === 'right') {
chartUnit = this.chartInfo.param.rightYAxis.unit
}
let result = parseFloat(num)
if (isNaN(result)) {
return '--'
}
result = chartDataFormat.getUnit(this.chartInfo.unit ? this.chartInfo.unit : 2).compute(result, null, -1, 2)
result = chartDataFormat.getUnit(chartUnit || 2).compute(result, null, -1, 2)
return result
},
getMaxValue (dataArg, chartInfo) {