浏览代码

修改移动端首页折线图

zhoupeng 1 年之前
父节点
当前提交
41b94cd4a3
共有 1 个文件被更改,包括 2 次插入5 次删除
  1. 2 5
      reado-app/static/webview/line-wv.html

+ 2 - 5
reado-app/static/webview/line-wv.html

@@ -87,19 +87,16 @@
 							show: false
 						}
 					},
+					backgroundColor:'rgba(255,255,255,0.1)',//通过设置rgba调节背景颜色与透明度
 					position: [0, 20],
 					formatter: function(params) {
 						let result = ''
 						for (let i in params) {
-							if (i == 0) {
-								result += params[i].axisValueLabel
-									.substring(11, 19)
-							}
 							let value = '--'
 							if (params[i].data !== null) {
 								value = params[i].data
 							}
-							result += '\n' + params[i].seriesName + ':' +
+							result += '<br>' + params[i].seriesName + ':' +
 								value
 						}
 						return result