wjc
2024-12-04 0bf583d6fa50fc4ab1eb4dd55c968e6333c9640c
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AAPie {
    public String type;
    public String name;
    public Object[] data;
    public AADataLabels dataLabels;
    public Number size;
    public String innerSize;
    public Boolean allowPointSelect;
    public String cursor;
    public Boolean showInLegend;
    public Number startAngle;
    public Number endAngle;
    public Number depth;
    public Object center;
 
    public AAPie type(String prop) {
        type = prop;
        return this;
    }
 
    public AAPie name(String prop) {
        name = prop;
        return this;
    }
 
    public AAPie data(Object[] prop) {
        data = prop;
        return this;
    }
 
    public AAPie dataLabels(AADataLabels prop) {
        dataLabels = prop;
        return this;
    }
 
    public AAPie size(Number prop) {
        size = prop;
        return this;
    }
 
    public AAPie innerSize(String prop) {
        innerSize = prop;
        return this;
    }
 
    public AAPie allowPointSelect(Boolean prop) {
        allowPointSelect = prop;
        return this;
    }
 
    public AAPie cursor(String prop) {
        cursor = prop;
        return this;
    }
 
    public AAPie showInLegend(Boolean prop) {
        showInLegend = prop;
        return this;
    }
 
    public AAPie startAngle(Number prop) {
        startAngle = prop;
        return this;
    }
 
    public AAPie endAngle(Number prop) {
        endAngle = prop;
        return this;
    }
 
    public AAPie depth(Number prop) {
        depth = prop;
        return this;
    }
 
    public AAPie center(Object prop) {
        center = prop;
        return this;
    }
 
}