NEZ-310 panel-chart缩放高对不齐、宽错误换行的问题

This commit is contained in:
chenjinsong
2020-06-04 18:33:56 +08:00
parent f400b01146
commit 5f7c5f2731
5 changed files with 22 additions and 169 deletions

View File

@@ -793,7 +793,7 @@
let legendDiv = document.getElementById('screenLegendArea'+self.chartIndex);
let divHeight = legendDiv.offsetHeight;
let screenHeight = document.documentElement.clientHeight || document.body.clientHeight;
let sumHeight = Math.round(screenHeight*0.99*0.8);//margin-top:1vh; dailog:80%
let sumHeight = Math.floor(screenHeight*0.99*0.8);//margin-top:1vh; dailog:80%
//console.log("11____00",sumHeight,divHeight,legendDiv)
self.$refs.screenShowArea.style.height = `${sumHeight - divHeight - self.screenTitleHeight}px`;
self.echartModalStore.resize({height: (sumHeight - divHeight - self.screenTitleHeight)});//图表的高度
@@ -1241,7 +1241,7 @@
//设置高度
this.$nextTick(() => {
const chartBox = document.getElementById('lineChartDiv'+this.chartIndex);
let height = Math.round(chartItem.height/this.$chartResizeTool.stepHeight)*this.$chartResizeTool.stepHeight;//图表高度四舍五入
let height = Math.floor(chartItem.height/this.$chartResizeTool.stepHeight)*this.$chartResizeTool.stepHeight;//图表高度四舍五入
if(height<this.$chartResizeTool.minHeight){
height = this.$chartResizeTool.minHeight;
}