You need to use it this way: this.fillColor = ("255","255","255");Modify your script in the foll. manner:if (this.rawValue < 0) { this.fillColor= ("231","179","173"); //Set the color to red if value is less than zero}else { this.fillColor = ("255","255","255"); //Set the color back to white i...