mac
2024-04-22 89e91f91b49676be534eb0005d02beae7b8343ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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;
    }
 
}