mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 19:42:56 +08:00
Merge pull request #11495 from dataease/pr@dev-v2@chart-bidirectional-fix
fix(图表-对称条形图): 修复无法配置右轴数据标签样式的问题
This commit is contained in:
commit
a8e1eb9e3e
@ -58,7 +58,7 @@ watch(
|
||||
{ deep: false }
|
||||
)
|
||||
const yAxis = computed(() => {
|
||||
if (props.chart.type.includes('chart-mix')) {
|
||||
if (props.chart.type.includes('chart-mix') || props.chart.type.includes('bidirectional-bar')) {
|
||||
return union(
|
||||
defaultTo(
|
||||
map(props.chart.yAxis, y => {
|
||||
@ -1274,7 +1274,7 @@ const conversionPrecision = [
|
||||
转化率
|
||||
</el-checkbox>
|
||||
</el-form-item>
|
||||
<div style="padding-left: 22px">
|
||||
<div style="padding-left: 22px" v-if="showProperty('conversionTag')">
|
||||
<el-row :gutter="8">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="保留小数" class="form-item" :class="'form-item-' + themes">
|
||||
|
Loading…
Reference in New Issue
Block a user