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 AAMarker {
    public Boolean enabled;
    public Number radius;
    public String symbol;
    public String fillColor;//点的填充色(用来设置折线连接点的填充色)
    public Number lineWidth;//外沿线的宽度(用来设置折线连接点的轮廓描边的宽度)
    public Object lineColor;//外沿线的颜色(用来设置折线连接点的轮廓描边颜色,当值为空字符串时,默认取数据点或数据列的颜色。)
    public AAMarkerStates states;
 
    public AAMarker enabled(Boolean prop) {
        enabled = prop;
        return this;
    }
 
    public AAMarker radius(Number prop) {
        radius = prop;
        return this;
    }
 
    public AAMarker symbol(String prop) {
        symbol = prop;
        return this;
    }
 
    public AAMarker fillColor(String prop) {
        fillColor = prop;
        return this;
    }
 
    public AAMarker lineWidth(Number prop) {
        lineWidth = prop;
        return this;
    }
 
    public AAMarker lineColor(Object prop) {
        lineColor = prop;
        return this;
    }
 
    public AAMarker states(AAMarkerStates prop) {
        states = prop;
        return this;
    }
}