-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
自定义图表 X
和 Y
轴的标题
#196
Comments
public class AATitle {
...
...
public String align;
public String verticalAlign;
public Number x;
public Number y;
public AATitle align(String prop) {
align = prop;
return this;
}
public AATitle verticalAlign(String prop) {
verticalAlign = prop;
return this;
}
public AATitle x(Number prop) {
x = prop;
return this;
}
public AATitle y(Number prop) {
y = prop;
return this;
}
...
...
} 通过这几个关键属性, 可以自定义 |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: