remove percentile plot
Eventually we want to only support what is now called aggregate, but not have to implement different plot types. So instead of supporting percentile plots for dashboards I removed them. You can still get percentile plots together with the scatter plot.
This commit is contained in:
@@ -4,7 +4,6 @@ import java.util.List;
|
||||
|
||||
import org.lucares.pdb.plot.api.AxisScale;
|
||||
import org.lucares.pdb.plot.api.Limit;
|
||||
import org.lucares.pdb.plot.api.PlotType;
|
||||
|
||||
public class PlotRequest {
|
||||
private String query;
|
||||
@@ -29,8 +28,6 @@ public class PlotRequest {
|
||||
|
||||
private String dateRange;
|
||||
|
||||
private PlotType plotType = PlotType.SCATTER;
|
||||
|
||||
private Aggregate aggregate = Aggregate.NONE;
|
||||
|
||||
private boolean keyOutside;
|
||||
@@ -133,14 +130,6 @@ public class PlotRequest {
|
||||
this.yAxis = yAxis;
|
||||
}
|
||||
|
||||
public PlotType getPlotType() {
|
||||
return plotType;
|
||||
}
|
||||
|
||||
public void setPlotType(final PlotType plotType) {
|
||||
this.plotType = plotType;
|
||||
}
|
||||
|
||||
public void setAggregate(final Aggregate aggregate) {
|
||||
this.aggregate = aggregate;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user