
nl.pvanassen.geckoboard.api.json.linechart.LineChartSettings 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.json.linechart;
import java.awt.Color;
import java.util.LinkedList;
import java.util.List;
import com.google.gson.annotations.SerializedName;
/**
* Settings class for linechart
*
* @author Paul van Assen
*/
public class LineChartSettings {
private final List axisx = new LinkedList();
private final List axisy = new LinkedList();
@SerializedName("colour")
private Color color;
public List getAxisx() {
return axisx;
}
public List getAxisy() {
return axisy;
}
public void setColor(Color color) {
this.color = color;
}
public Color getColor() {
return color;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy