
nl.pvanassen.highchart.api.axis.AxisPlotLineLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highchart-java-api Show documentation
Show all versions of highchart-java-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.highchart.api.axis;
import nl.pvanassen.highchart.api.base.BaseObject;
import nl.pvanassen.highchart.api.base.Style;
public class AxisPlotLineLabel extends BaseObject {
private String align;
private String verticalAlign;
private double rotation;
private String text;
private String textAlign;
private double x;
private double y;
private Style style;
public AxisPlotLineLabel() {
style = new Style();
}
public String getAlign() {
return align;
}
public double getRotation() {
return rotation;
}
public Style getStyle() {
return style;
}
public String getText() {
return text;
}
public String getTextAlign() {
return textAlign;
}
public String getVerticalAlign() {
return verticalAlign;
}
public double getX() {
return x;
}
public double getY() {
return y;
}
public AxisPlotLineLabel setAlign(String align) {
this.align = align;
return this;
}
public AxisPlotLineLabel setRotation(double rotation) {
this.rotation = rotation;
return this;
}
public AxisPlotLineLabel setStyle(Style style) {
this.style = style;
return this;
}
public AxisPlotLineLabel setText(String text) {
this.text = text;
return this;
}
public AxisPlotLineLabel setTextAlign(String textAlign) {
this.textAlign = textAlign;
return this;
}
public AxisPlotLineLabel setVerticalAlign(String verticalAlign) {
this.verticalAlign = verticalAlign;
return this;
}
public AxisPlotLineLabel setX(double x) {
this.x = x;
return this;
}
public AxisPlotLineLabel setY(double y) {
this.y = y;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy