瀏覽代碼

取消价格显示

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);
     }