wjc
6 天以前 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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AALang {
    public String noData;
    public Integer numericSymbolMagnitude;
    public String[] numericSymbols;
    public String resetZoom;
    public String thousandsSep;
 
    public AALang noData(String prop) {
        noData = prop;
        return this;
    }
 
    public AALang numericSymbolMagnitude(Integer prop) {
        numericSymbolMagnitude = prop;
        return this;
    }
 
    public AALang numericSymbols(String[] prop) {
        numericSymbols = prop;
        return this;
    }
 
    public AALang resetZoom(String prop) {
        resetZoom = prop;
        return this;
    }
 
    public AALang thousandsSep(String prop) {
        thousandsSep = prop;
        return this;
    }
}