group plots by a single field
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user