inspection-server/src/main/java/com/yuanchu/limslaboratory/pojo/Dto/SeriesDto.java
@@ -13,20 +13,20 @@ public class SeriesDto implements Serializable { private String name; private List<Long> data; private List<Double> data; private String type; private String stack; //private String stack; public SeriesDto(String name, List<Long> data) { public SeriesDto(String name, List<Double> data) { this.name = name; this.data = data; this.type = "bar"; this.stack = "x"; //this.stack = "x"; } public SeriesDto(String name) { this.name = name; this.type = "bar"; this.stack = "x"; //this.stack = "x"; } }