i4way-dash/.svn/pristine/b3/b3741c289bad61ce3a324d96e3d...

10 lines
206 B
Plaintext

ColorScale.prototype.setMin = function (min) {
this.clearMinValue = min;
if (typeof this.normalize === 'function') {
this.minValue = this.normalize(min);
} else {
this.minValue = min;
}
};