mac
2024-05-30 2b805d413e924bc0a8e80e1280208d9af8d93cb1
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AAPlotBandsElement {
    public Number from;
    public Number to;
    public Object color;
    public String borderColor;
    public Number borderWidth;
    public String className;
    public AALabel label;
    public Integer zIndex;
 
    public AAPlotBandsElement from(Number prop) {
        from = prop;
        return this;
    }
 
    public AAPlotBandsElement to(Number prop) {
        to = prop;
        return this;
    }
 
    public AAPlotBandsElement color(Object prop) {
        color = prop;
        return this;
    }
 
    public AAPlotBandsElement borderColor(String prop) {
        borderColor = prop;
        return this;
    }
 
    public AAPlotBandsElement borderWidth(Number prop) {
        borderWidth = prop;
        return this;
    }
 
    public AAPlotBandsElement className(String prop) {
        className = prop;
        return this;
    }
 
    public AAPlotBandsElement label(AALabel prop) {
        label = prop;
        return this;
    }
 
    public AAPlotBandsElement zIndex(Integer prop) {
        zIndex = prop;
        return this;
    }
 
}