fix: 测试计划场景报告柱状图标题缺失
This commit is contained in:
parent
7e9c1e6d01
commit
7b5eba6057
|
@ -18,6 +18,22 @@ export default {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
options: {
|
options: {
|
||||||
|
title: {
|
||||||
|
text: '场景用例数',
|
||||||
|
subtext: '55',
|
||||||
|
textAlign:'center',
|
||||||
|
y: 'center',
|
||||||
|
padding: 40,
|
||||||
|
itemGap: 5,
|
||||||
|
textStyle: {
|
||||||
|
lineHeight: 30,
|
||||||
|
fontSize: 16,
|
||||||
|
},
|
||||||
|
subtextStyle: {
|
||||||
|
height: 30,
|
||||||
|
fontSize: 18,
|
||||||
|
}
|
||||||
|
},
|
||||||
tooltip: {
|
tooltip: {
|
||||||
trigger: 'axis',
|
trigger: 'axis',
|
||||||
axisPointer: {
|
axisPointer: {
|
||||||
|
@ -38,20 +54,8 @@ export default {
|
||||||
data: [],
|
data: [],
|
||||||
axisLabel: {
|
axisLabel: {
|
||||||
formatter: function (value) {
|
formatter: function (value) {
|
||||||
|
return '';
|
||||||
},
|
},
|
||||||
margin: 20,
|
|
||||||
rich: {
|
|
||||||
name: {
|
|
||||||
lineHeight: 30,
|
|
||||||
fontSize: 16,
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
count: {
|
|
||||||
height: 40,
|
|
||||||
fontSize: 20,
|
|
||||||
align: 'center',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
series: [
|
series: [
|
||||||
|
@ -110,10 +114,8 @@ export default {
|
||||||
this.options.series[0].data = this.data;
|
this.options.series[0].data = this.data;
|
||||||
this.options.series[0].label.formatter = formatterFuc;
|
this.options.series[0].label.formatter = formatterFuc;
|
||||||
|
|
||||||
let name = this.name;
|
this.options.title.text = this.name;
|
||||||
this.options.yAxis.axisLabel.formatter = function (value) {
|
this.options.title.subtext = dataCount;
|
||||||
return '{name|' + name + '}\n' + '{count| ' + dataCount + '}';
|
|
||||||
};
|
|
||||||
|
|
||||||
this.options.legend.data = this.data.map(i => i.name);
|
this.options.legend.data = this.data.map(i => i.name);
|
||||||
this.options.yAxis.data = this.data.map(i => i.name);
|
this.options.yAxis.data = this.data.map(i => i.name);
|
||||||
|
|
Loading…
Reference in New Issue