// ******************** Constructors **************************************
public LedBargraph() {
getStyleClass().add("bargraph");
ledColors = new SimpleListProperty(this, "ledColors", FXCollections.<Color>observableArrayList());
value = new SimpleDoubleProperty(this, "value", 0);
for (int i = 0 ; i < getNoOfLeds() ; i++) {
if (i < 11) {
ledColors.get().add(Color.LIME);