Commit 7e750aee762aad53a8d559b5b448cacd2ee8b909

Authored by baohanddd
1 parent c461daa0a4

add statistics(map) common index

Showing 1 changed file with 9 additions and 0 deletions

platform-reportData/src/main/java/com/lymsh/platform/reportdata/model/echarts/Option.java View file @ 7e750ae
... ... @@ -14,9 +14,18 @@
14 14 private Tooltip toolbox;
15 15 private List<Object> series;
16 16 private String[] color = {"#2f4554","#c23531", "#61a0a8", "#d48265", "#91c7ae","#749f83", "#ca8622", "#bda29a","#6e7074", "#546570", "#c4ccd3"};
  17 + private String backgroundColor = "rgba(235, 235, 235, 0.3)";
17 18  
18 19 private Grid grid;
19 20 private AxisPointer xAxis;
  21 +
  22 + public String getBackgroundColor() {
  23 + return backgroundColor;
  24 + }
  25 +
  26 + public void setBackgroundColor(String backgroundColor) {
  27 + this.backgroundColor = backgroundColor;
  28 + }
20 29  
21 30 public String[] getColor() {
22 31 return color;