fix:修改关于小数部分的 Y轴显示不正常的问题
This commit is contained in:
@@ -1688,7 +1688,7 @@
|
||||
oldValue=oldValue*10;
|
||||
dot++;
|
||||
}
|
||||
maxValue=Math.ceil(oldValue)/Math.pow(10,dot);
|
||||
maxValue=Math.floor(oldValue)/Math.pow(10,dot);
|
||||
dot++;
|
||||
}
|
||||
let copies=chartDataFormat.copies(oldValue,unit.type);
|
||||
|
||||
Reference in New Issue
Block a user