wjc
5 天以前 80f2ca2df62ff1cd03046864af504245be078eb2
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;
    }
}