
nl.pvanassen.highchart.api.plotoption.PlotStatesSelect 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.plotoption;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import nl.pvanassen.highchart.api.base.BaseObject;
@XmlAccessorType(XmlAccessType.NONE)
public class PlotStatesSelect extends BaseObject {
private String color;
private String borderColor;
@XmlElement
private Integer borderWidth;
public String getBorderColor() {
return borderColor;
}
public int getBorderWidth() {
return borderWidth;
}
public String getColor() {
return color;
}
public PlotStatesSelect setBorderColor(String borderColor) {
this.borderColor = borderColor;
return this;
}
public PlotStatesSelect setBorderWidth(int borderWidth) {
this.borderWidth = borderWidth;
return this;
}
public PlotStatesSelect setColor(String color) {
this.color = color;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy