wjc
2025-04-22 98747f855b0284c6c2c5cba744101db49139af43
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 AAColumnrange {
    public Number borderRadius; //The color of the border surrounding each column or bar
    public Number borderWidth; //The corner radius of the border surrounding each column or bar. default:0.
    public AADataLabels dataLabels; //The options for the data labels appearing on top of each column or bar
    public Number groupPadding; //Padding between each value groups, in x axis units. default:0.2.
    public Boolean grouping; //Whether to group non-stacked columns or to let them render independent of each other. default:false.
    public Number pointPadding; //Padding between each column or bar, in x axis units. default:0.1.
    public Number pointPlacement; //Padding between each column or bar, in x axis units. default:0.1.
 
    public AAColumnrange borderRadius(Number prop) {
        borderRadius = prop;
        return this;
    }
 
    public AAColumnrange borderWidth(Number prop) {
        borderWidth = prop;
        return this;
    }
 
    public AAColumnrange dataLabels(AADataLabels prop) {
        dataLabels = prop;
        return this;
    }
 
    public AAColumnrange groupPadding(Number prop) {
        groupPadding = prop;
        return this;
    }
 
    public AAColumnrange grouping(Boolean prop) {
        grouping = prop;
        return this;
    }
 
    public AAColumnrange pointPadding(Number prop) {
        pointPadding = prop;
        return this;
    }
 
    public AAColumnrange pointPlacement(Number prop) {
        pointPlacement = prop;
        return this;
    }
}