package com.github.AAChartModel.AAChartCore.AAOptionsModel;
|
|
public class AAPlotLinesElement {
|
|
public Object color;
|
public String dashStyle;
|
public Number width;
|
public Number value;
|
public Integer zIndex;
|
public AALabel label;
|
|
public AAPlotLinesElement color(Object prop) {
|
color = prop;
|
return this;
|
}
|
|
public AAPlotLinesElement dashStyle(String prop) {
|
dashStyle = prop;
|
return this;
|
}
|
|
public AAPlotLinesElement width(Number prop) {
|
width = prop;
|
return this;
|
}
|
|
public AAPlotLinesElement value(Number prop) {
|
value = prop;
|
return this;
|
}
|
|
public AAPlotLinesElement zIndex(Integer prop) {
|
zIndex = prop;
|
return this;
|
}
|
|
public AAPlotLinesElement label(AALabel prop) {
|
label = prop;
|
return this;
|
}
|
|
|
|
}
|