
nl.pvanassen.highchart.api.Labels 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.*;
import nl.pvanassen.highchart.api.base.BaseObject;
import nl.pvanassen.highchart.api.label.LabelsItems;
import nl.pvanassen.highchart.api.utils.JsonArray;
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(namespace = "chart-options")
public class Labels extends BaseObject {
@XmlTransient
private JsonArray items;
public Labels() {
}
@XmlTransient
public JsonArray getItems() {
if (items == null) {
items = new JsonArray();
}
return items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy