hxb
2025-04-25 5a43cb75120f69a57d5238e855eef8e82b3e4544
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;
    }
}