wjc
2025-04-15 cdf49871675e42a5576f725a93eec7ca15294c6f
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AABackgroundElement {
    public Object backgroundColor;
    public String borderColor;
    public Number borderWidth;
    public String className;
    public Number innerRadius;
    public Number outerRadius;
    public String shape;
 
    public AABackgroundElement backgroundColor(Object prop) {
        backgroundColor = prop;
        return this;
    }
    public AABackgroundElement borderColor(String prop) {
        borderColor = prop;
        return this;
    }
 
    public AABackgroundElement borderWidth(Number prop) {
        borderWidth = prop;
        return this;
    }
 
    public AABackgroundElement className(String prop) {
        className = prop;
        return this;
    }
 
    public AABackgroundElement innerRadius(Number prop) {
        innerRadius = prop;
        return this;
    }
 
    public AABackgroundElement outerRadius(Number prop) {
        outerRadius = prop;
        return this;
    }
 
    public AABackgroundElement shape(String prop) {
        shape = prop;
        return this;
    }
 
}