
nl.pvanassen.highchart.api.plotoption.PlotOptionsMarker 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 PlotOptionsMarker extends BaseObject {
private String symbol;
private boolean enabled;
private PlotMarkerStates states;
public PlotOptionsMarker() {
}
public PlotMarkerStates getStates() {
if (states == null) {
states = new PlotMarkerStates();
}
return states;
}
public String getSymbol() {
return symbol;
}
public boolean isEnabled() {
return enabled;
}
public PlotOptionsMarker setEnabled(boolean enabled) {
this.enabled = enabled;
return this;
}
public PlotOptionsMarker setSymbol(String symbol) {
this.symbol = symbol;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy