mac
2024-06-12 12d6db5780d8a2121a3bef2d58bf897b24ff552a
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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AADataElement {
    public String name;
    public Number x;
    public Number y;
    public Object color;
    public AADataLabels dataLabels;
    public AAMarker marker;
 
    public AADataElement name(String prop) {
        name = prop;
        return this;
    }
 
    public AADataElement x(Number prop) {
        x = prop;
        return this;
    }
 
    public AADataElement y(Number prop) {
        y = prop;
        return this;
    }
 
    public AADataElement color(Object prop) {
        color = prop;
        return this;
    }
 
    public AADataElement dataLabels(AADataLabels prop) {
        dataLabels = prop;
        return this;
    }
 
    public AADataElement marker(AAMarker prop) {
        marker = prop;
        return this;
    }
}