
nl.pvanassen.highchart.api.plotoption.PlotMarkerSelect 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 nl.pvanassen.highchart.api.base.BaseObject;
public class PlotMarkerSelect extends BaseObject {
private String fillColor, lineColor;
private int lineWidth;
public String getFillColor() {
return fillColor;
}
public String getLineColor() {
return lineColor;
}
public int getLineWidth() {
return lineWidth;
}
public PlotMarkerSelect setFillColor(String fillColor) {
this.fillColor = fillColor;
return this;
}
public PlotMarkerSelect setLineColor(String lineColor) {
this.lineColor = lineColor;
return this;
}
public PlotMarkerSelect setLineWidth(int lineWidth) {
this.lineWidth = lineWidth;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy