|
@@ -228,8 +228,8 @@ export default {
|
|
|
this.dataX.push(el.value)
|
|
|
this.loadX.push(el.value)
|
|
|
this.dataY1.push(el.tout == '-9999' ? undefined : el.tout)
|
|
|
- this.dataY2.push(el.meanTindoor)
|
|
|
- this.dataY3.push(el.maxTindoor)
|
|
|
+ this.dataY2.push(el.meanTindoor == '-9999' ? undefined : el.meanTindoor)
|
|
|
+ this.dataY3.push(el.maxTindoor == '-9999' ? undefined : el.maxTindoor)
|
|
|
this.loadY1.push(el.nowPlantLoad ? (el.nowPlantLoad == '-9999' ? undefined : el.nowPlantLoad) : undefined)
|
|
|
this.loadY2.push(el.predictedLoadUpLimit ? (el.predictedLoadUpLimit == '-9999' ? undefined : el.predictedLoadUpLimit) : undefined)
|
|
|
this.loadY3.push(el.redictedLoadDownLimit ? (el.redictedLoadDownLimit == '-9999' ? undefined : el.redictedLoadDownLimit) : undefined)
|