|
@@ -113,6 +113,24 @@ export default {
|
|
|
yAxis: [
|
|
|
{
|
|
|
type: 'value',
|
|
|
+ name: '室内温度满足率',
|
|
|
+ axisLine: {
|
|
|
+ lineStyle: {
|
|
|
+ // color: '#8D9399'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ min: 0,
|
|
|
+ max: 100,
|
|
|
+ splitLine: {
|
|
|
+ show: false
|
|
|
+ },
|
|
|
+ position: 'left',
|
|
|
+ axisLabel: {
|
|
|
+ formatter: '{value} %'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'value',
|
|
|
name: '节能率',
|
|
|
axisLine: {
|
|
|
lineStyle: {
|
|
@@ -122,7 +140,7 @@ export default {
|
|
|
splitLine: {
|
|
|
show: false
|
|
|
},
|
|
|
- min: 0,
|
|
|
+ // min: ,
|
|
|
max: 100,
|
|
|
position: 'right',
|
|
|
axisLabel: {
|
|
@@ -145,22 +163,6 @@ export default {
|
|
|
return ''
|
|
|
}
|
|
|
}
|
|
|
- },
|
|
|
- {
|
|
|
- type: 'value',
|
|
|
- name: '室内温度满足率',
|
|
|
- axisLine: {
|
|
|
- lineStyle: {
|
|
|
- // color: '#8D9399'
|
|
|
- }
|
|
|
- },
|
|
|
- splitLine: {
|
|
|
- show: false
|
|
|
- },
|
|
|
- position: 'left',
|
|
|
- axisLabel: {
|
|
|
- formatter: '{value} %'
|
|
|
- }
|
|
|
}
|
|
|
],
|
|
|
// var colors = ['#34C724', '#8D9399', '#F54E45', '#0091FF', '#00D6B9']
|
|
@@ -204,7 +206,7 @@ export default {
|
|
|
{
|
|
|
name: '室内温度满足率',
|
|
|
type: 'line',
|
|
|
- yAxisIndex: 2,
|
|
|
+ yAxisIndex: 0,
|
|
|
data: this.indoorY,
|
|
|
itemStyle: {
|
|
|
normal: {
|
|
@@ -218,7 +220,7 @@ export default {
|
|
|
{
|
|
|
name: '节能率',
|
|
|
type: 'line',
|
|
|
- yAxisIndex: 2,
|
|
|
+ yAxisIndex: 1,
|
|
|
data: this.energyY,
|
|
|
itemStyle: {
|
|
|
normal: {
|