
nl.pvanassen.highchart.api.Tooltip 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;
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 Tooltip extends BaseObject {
@XmlElement
private Boolean crosshairs;
@XmlElement
private Boolean shared;
public boolean isCrosshairs() {
return crosshairs;
}
public boolean isShared() {
return shared;
}
public Tooltip setCrosshairs(boolean b) {
crosshairs = b;
return this;
}
public Tooltip setShared(boolean shared) {
this.shared = shared;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy