prepare plot type for 'step fit' plots

This commit is contained in:
2019-10-31 19:11:38 +01:00
parent 775b420e85
commit 57be6f64e2
3 changed files with 178 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ export class PlotService {
this.plotTypes.push(new PlotType("STRIP", "Strip", "strip-chart", false, DataType.Group, DataType.Duration));
this.plotTypes.push(new PlotType("PIE", "Pie", "pie-chart", false, DataType.Other, DataType.Other));
this.plotTypes.push(new PlotType("BAR", "Bar", "bar-chart", false, DataType.Other, DataType.Other));
this.plotTypes.push(new PlotType("STEP_FIT", "Step Fit", "step-fit", false, DataType.Other, DataType.Other));
this.tagFields = new Array<TagField>();
}