Added item count to LinePlotSeries

This commit is contained in:
2014-08-29 16:16:32 +02:00
parent 9f800dd7dd
commit 48b9fede7b

View File

@@ -8,6 +8,7 @@ public class XYSeries extends Series {
private String x = null;
private String y = null;
private Integer maxItemCount = -1;
public XYSeries(){
}
@@ -30,5 +31,12 @@ public class XYSeries extends Series {
}
public void setY(String y) {
this.y = y;
}
@XmlAttribute
public Integer getMaxItemCount() {
return maxItemCount;
}
public void setMaxItemCount(Integer maxCount) {
this.maxItemCount = maxCount;
}
}