|
|
@@ -1,6 +1,8 @@
|
|
|
package com.usoftchina.bi.server.model.vo.configVo;
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
+import com.usoftchina.bi.core.utils.JsonUtils;
|
|
|
import com.usoftchina.bi.server.model.bo.Column;
|
|
|
import com.usoftchina.bi.server.model.bo.Screen;
|
|
|
|
|
|
@@ -69,9 +71,11 @@ public class HistogramConfigInfo {
|
|
|
public String toString() {
|
|
|
return "HistogramConfigInfo{" +
|
|
|
"id=" + id +
|
|
|
- ", xAxis=" + xAxis +
|
|
|
- ", yAxis=" + yAxis +
|
|
|
- ", groups=" + groups +
|
|
|
+ ", xAxis=" + xAxis.toString() +
|
|
|
+ ", yAxis=" + yAxis.toString() +
|
|
|
+ ", groups=" + JSON.toJSONString(groups) +
|
|
|
+ ", filters=" + JSON.toJSONString(filters) +
|
|
|
+ ", maxCount=" + maxCount +
|
|
|
'}';
|
|
|
}
|
|
|
}
|