feat--折线图数据设定增加是否显示百分比符号

This commit is contained in:
qianming
2023-10-23 15:46:45 +08:00
parent 234ff615ba
commit 5cba850653
4 changed files with 20 additions and 0 deletions

View File

@@ -568,6 +568,14 @@ export const widgetLineStack = {
placeholder: '',
value: false
},
{
type: 'el-switch',
label: '百分比符号显示',
name: 'percentSign',
required: false,
placeholder: '',
value: false
},
{
type: 'el-input-number',
label: '字体字号',

View File

@@ -560,6 +560,14 @@ export const widgetLinechart = {
placeholder: '',
value: false
},
{
type: 'el-switch',
label: '百分比符号显示',
name: 'percentSign',
required: false,
placeholder: '',
value: false
},
{
type: 'el-input-number',
label: '字体字号',

View File

@@ -400,6 +400,7 @@ export default {
fontSize: optionsSetup.fontSize,
color: optionsSetup.dataColor,
fontWeight: optionsSetup.fontWeight,
formatter: !!optionsSetup.percentSign ? '{c}%' : '{c}'
},
});
legendName.push(yAxisList[i]);
@@ -488,6 +489,7 @@ export default {
fontSize: optionsSetup.fontSize,
color: optionsSetup.dataColor,
fontWeight: optionsSetup.fontWeight,
formatter: !!optionsSetup.percentSign ? '{c}%' : '{c}'
},
});
}

View File

@@ -364,6 +364,7 @@ export default {
fontSize: optionsSetup.fontSize,
color: optionsSetup.dataColor,
fontWeight: optionsSetup.fontWeight,
formatter: !!optionsSetup.percentSign ? '{c}%' : '{c}'
};
series[i].data = data;
this.options.legend["data"] = legendName;
@@ -434,6 +435,7 @@ export default {
fontSize: optionsSetup.fontSize,
color: optionsSetup.dataColor,
fontWeight: optionsSetup.fontWeight,
formatter: !!optionsSetup.percentSign ? '{c}%' : '{c}'
};
obj.data = val.series[i].data;
series.push(obj);