
nl.pvanassen.highchart.api.PlotOptions 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;
import nl.pvanassen.highchart.api.plotoption.PlotOptionsSeries;
@XmlAccessorType(XmlAccessType.NONE)
public class PlotOptions extends BaseObject {
@XmlElement
private PlotOptionsSeries area;
private PlotOptionsSeries areaspline;
private PlotOptionsSeries line;
private PlotOptionsSeries pie;
private PlotOptionsSeries series;
private PlotOptionsSeries spline;
private PlotOptionsSeries column;
private PlotOptionsSeries bar;
public PlotOptions() {
super();
}
public PlotOptionsSeries getArea() {
if (area == null) {
area = new PlotOptionsSeries();
}
return area;
}
public PlotOptionsSeries getAreaspline() {
if (areaspline == null) {
areaspline = new PlotOptionsSeries();
}
return areaspline;
}
public PlotOptionsSeries getBar() {
if (bar == null) {
bar = new PlotOptionsSeries();
}
return bar;
}
public PlotOptionsSeries getColumn() {
if (column == null) {
column = new PlotOptionsSeries();
}
return column;
}
public PlotOptionsSeries getLine() {
if (line == null) {
line = new PlotOptionsSeries();
}
return line;
}
public PlotOptionsSeries getPie() {
if (pie == null) {
pie = new PlotOptionsSeries();
}
return pie;
}
public PlotOptionsSeries getSeries() {
if (series == null) {
series = new PlotOptionsSeries();
}
return series;
}
public PlotOptionsSeries getSpline() {
if (spline == null) {
spline = new PlotOptionsSeries();
}
return spline;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy