
nl.pvanassen.geckoboard.api.widget.HighChart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
The newest version!
package nl.pvanassen.geckoboard.api.widget;
import nl.pvanassen.geckoboard.api.Push;
import nl.pvanassen.geckoboard.api.error.ValidationException;
import nl.pvanassen.highchart.api.ChartOptions;
import com.google.gson.annotations.SerializedName;
/**
* Line chart widget
*
* @author Paul van Assen
*/
public class HighChart extends Push {
@SerializedName("highchart")
private final ChartOptions chartOptions = new ChartOptions();
public HighChart(String widgetKey) {
super(widgetKey);
}
public ChartOptions getChartOptions() {
return chartOptions;
}
@Override
protected void validate() throws ValidationException {
// TODO Auto-generated method stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy