feat:model asset 新增同步按钮 & 图表xy轴字体大小调整

This commit is contained in:
wangwenrui
2020-06-04 11:58:20 +08:00
parent 294cc676a1
commit a2acf3d29f
13 changed files with 60 additions and 15 deletions

View File

@@ -207,7 +207,8 @@
show: false
},
axisLabel: {
fontSize: 13*window.devicePixelRatio
show:true,
fontSize: 10
}
},
yAxis: {
@@ -220,13 +221,14 @@
},
data: [],
axisLabel: {
show:true,
formatter: function(value) {
if (value.length > 12) {
return value.substring(0, 9) + "...";
}
return value;
},
fontSize: 12*window.devicePixelRatio
fontSize: 10
},
triggerEvent: true
},