package com.github.AAChartModel.AAChartCore.AAOptionsModel;
|
|
public class AAPlotOptions {
|
public AAColumn column;
|
public AALine line;
|
public AAPie pie;
|
public AABar bar;
|
public AASpline spline;
|
public AAArea area;
|
public AAAreaspline areaspline;
|
public AABubble bubble;
|
public AAColumnrange columnrange;
|
public AAArearange arearange;
|
public AASeries series;
|
public AABoxplot boxplot;
|
public AAScatter scatter;
|
|
|
public AAPlotOptions column(AAColumn prop) {
|
column = prop;
|
return this;
|
}
|
|
public AAPlotOptions line(AALine prop) {
|
line = prop;
|
return this;
|
}
|
|
public AAPlotOptions pie(AAPie prop) {
|
pie = prop;
|
return this;
|
}
|
|
public AAPlotOptions bar(AABar prop) {
|
bar = prop;
|
return this;
|
}
|
|
public AAPlotOptions spline(AASpline prop) {
|
spline = prop;
|
return this;
|
}
|
|
public AAPlotOptions area(AAArea prop) {
|
area = prop;
|
return this;
|
}
|
|
public AAPlotOptions areaspline(AAAreaspline prop) {
|
areaspline = prop;
|
return this;
|
}
|
|
public AAPlotOptions bubble(AABubble prop) {
|
bubble = prop;
|
return this;
|
}
|
|
public AAPlotOptions columnrange(AAColumnrange prop) {
|
columnrange = prop;
|
return this;
|
}
|
|
public AAPlotOptions arearange(AAArearange prop) {
|
arearange = prop;
|
return this;
|
}
|
|
public AAPlotOptions series(AASeries prop) {
|
series = prop;
|
return this;
|
}
|
|
public AAPlotOptions boxplot(AABoxplot prop) {
|
boxplot = prop;
|
return this;
|
}
|
|
public AAPlotOptions scatter(AAScatter prop) {
|
scatter = prop;
|
return this;
|
}
|
|
}
|