
nl.pvanassen.highchart.api.plotoption.PlotMarkerHover 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 PlotMarkerHover extends BaseObject {
private boolean enabled;
public boolean isEnabled() {
return enabled;
}
public PlotMarkerHover setEnabled(boolean enabled) {
this.enabled = enabled;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy