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
package com.github.AAChartModel.AAChartCore.AAOptionsModel;
 
public class AAScrollablePlotArea {
    public Number minHeight;
    public Number minWidth;
    public Float opacity;
    public Number scrollPositionX;
    public Number scrollPositionY;
 
    public AAScrollablePlotArea minHeight(Number prop) {
        minHeight = prop;
        return this;
    }
 
    public AAScrollablePlotArea minWidth(Number prop) {
        minWidth = prop;
        return this;
    }
 
    public AAScrollablePlotArea opacity(Float prop) {
        opacity = prop;
        return this;
    }
 
    public AAScrollablePlotArea scrollPositionX(Number prop) {
        scrollPositionX = prop;
        return this;
    }
 
    public AAScrollablePlotArea scrollPositionY(Number prop) {
        scrollPositionY = prop;
        return this;
    }
}