소스 검색

取消价格显示

gepangpang 1 년 전
부모
커밋
37404f7c9f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/export_template/template_balance.rs

+ 1 - 1
src/export_template/template_balance.rs

@@ -49,7 +49,7 @@ pub fn export_html(config: BalanceConfigInfo, acc_name_all: &Vec<String>, x_time
     let mut series_all = Vec::new();
     for (key, val) in map {
         // info!("{:?}=---{:?}",key.to_string(),val.len());
-        let series = json!({"name": key.to_string(), "type": "line", "smooth": true, "label": {"show": true,"position": "top"}, "data": val});
+        let series = json!({"name": key.to_string(), "type": "line", "smooth": true, "data": val});
         // info!("数据:{:?}",series);
         series_all.push(series);
     }