Commit 9515a1a5e23a79745b18f422494bc26b00778d85
1 parent
941786540f
Exists in
master
and in
8 other branches
add statistics(map) common index
Showing 2 changed files with 0 additions and 10 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/StatisticsController.java
View file @
9515a1a
| ... | ... | @@ -372,7 +372,6 @@ |
| 372 | 372 | option.setxAxis(xAxis); |
| 373 | 373 | AxisPointer yAxis = new AxisPointer(); |
| 374 | 374 | yAxis.setType("category"); |
| 375 | - yAxis.setAxisLabel(new AxisPointer()); | |
| 376 | 375 | List<Object> dataList = new ArrayList<Object>(); |
| 377 | 376 | yAxis.setData(dataList); |
| 378 | 377 | option.setyAxis(yAxis); |
platform-reportData/src/main/java/com/lymsh/platform/reportdata/model/echarts/AxisPointer.java
View file @
9515a1a
| ... | ... | @@ -11,15 +11,6 @@ |
| 11 | 11 | private List<Object> boundaryGap; |
| 12 | 12 | private List<Object> data; |
| 13 | 13 | private Integer interval = 0; |
| 14 | - private AxisPointer axisLabel; | |
| 15 | - | |
| 16 | - public AxisPointer getAxisLabel() { | |
| 17 | - return axisLabel; | |
| 18 | - } | |
| 19 | - | |
| 20 | - public void setAxisLabel(AxisPointer axisLabel) { | |
| 21 | - this.axisLabel = axisLabel; | |
| 22 | - } | |
| 23 | 14 | |
| 24 | 15 | public Integer getInterval() { |
| 25 | 16 | return interval; |