group plots by a single field

This commit is contained in:
2016-12-30 18:45:01 +01:00
parent 62437f384f
commit c283568757
8 changed files with 125 additions and 24 deletions

View File

@@ -7,6 +7,8 @@ public class PlotRequest {
private int width;
private String groupBy;
public String getQuery() {
return query;
}
@@ -35,4 +37,12 @@ public class PlotRequest {
public String toString() {
return query + ":" + height + "x" + width;
}
public String getGroupBy() {
return groupBy;
}
public void setGroupBy(final String groupBy) {
this.groupBy = groupBy;
}
}