Commit 5573bdafd4c07d692920e912782db01de6624c33
1 parent
08b651cb7d
Exists in
master
and in
8 other branches
add statistics(map) common index
Showing 2 changed files with 3 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/StatisticsController.java
View file @
5573bda
... | ... | @@ -141,6 +141,7 @@ |
141 | 141 | series.setMapType("china"); |
142 | 142 | series.setRoam(false); |
143 | 143 | series.setData(dataList); |
144 | + series.setLabel(label); | |
144 | 145 | seriesList.add(series); |
145 | 146 | option.setSeries(seriesList); |
146 | 147 | |
... | ... | @@ -361,6 +362,7 @@ |
361 | 362 | series.setMapType("china"); |
362 | 363 | series.setRoam(false); |
363 | 364 | series.setData(dataList); |
365 | + series.setLabel(label); | |
364 | 366 | seriesList.add(series); |
365 | 367 | option.setSeries(seriesList); |
366 | 368 |
platform-reportData/src/main/java/com/lymsh/platform/reportdata/model/echarts/VisualMap.java
View file @
5573bda