mac
2024-05-17 b754ad3b6dab239842ee69cabfb5a4a738e61f5e
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AAItemStyle {
    public String color;
    public String cursor;
    public String pointer;
    public String fontSize;
    public String fontWeight;
 
 
    public AAItemStyle color(String prop) {
        color = prop;
        return this;
    }
 
    public AAItemStyle cursor(String prop) {
        cursor = prop;
        return this;
    }
 
    public AAItemStyle pointer(String prop) {
        pointer = prop;
        return this;
    }
 
    public AAItemStyle fontSize(Number prop) {
        fontSize = prop + "px";
        return this;
    }
 
    public AAItemStyle fontWeight(String prop) {
        fontWeight = prop;
        return this;
    }
}