
nl.pvanassen.geckoboard.api.json.bulletgraph.Range 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.bulletgraph;
/**
* Bullet graph range
*
* @author Paul van Assen
*/
public class Range extends Position {
private final RAGColor color;
public Range(int start, int end, RAGColor color) {
super(start, end);
this.color = color;
}
public RAGColor getColor() {
return color;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy