wjc
2025-04-22 98747f855b0284c6c2c5cba744101db49139af43
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AABoxplot {
    public String boxDashStyle;
    public Object fillColor;
    public Number lineWidth;
    public String medianColor;
    public String medianDashStyle;
    public Number medianWidth;
    public String stemColor;
    public String stemDashStyle;
    public Number stemWidth;
    public String whiskerColor;
    public String whiskerDashStyle;
    public String whiskerLength;
    public Number whiskerWidth;
 
    public AABoxplot boxDashStyle(String prop) {
        boxDashStyle = prop;
        return this;
    }
 
    public AABoxplot fillColor(Object prop) {
        fillColor = prop;
        return this;
    }
 
    public AABoxplot lineWidth(Number prop) {
        lineWidth = prop;
        return this;
    }
 
    public AABoxplot medianColor(String prop) {
        medianColor = prop;
        return this;
    }
 
    public AABoxplot medianDashStyle(String prop) {
        medianDashStyle = prop;
        return this;
    }
 
    public AABoxplot medianWidth(Number prop) {
        medianWidth = prop;
        return this;
    }
 
    public AABoxplot stemColor(String prop) {
        stemColor = prop;
        return this;
    }
 
    public AABoxplot stemDashStyle(String prop) {
        stemDashStyle = prop;
        return this;
    }
 
    public AABoxplot stemWidth(Number prop) {
        stemWidth = prop;
        return this;
    }
 
    public AABoxplot whiskerColor(String prop) {
        whiskerColor = prop;
        return this;
    }
 
    public AABoxplot whiskerDashStyle(String prop) {
        whiskerDashStyle = prop;
        return this;
    }
 
    public AABoxplot whiskerLength(String prop) {
        whiskerLength = prop;
        return this;
    }
 
    public AABoxplot whiskerWidth(Number prop) {
        whiskerWidth = prop;
        return this;
    }
}