File "setMax.js"

Full Path: /home/cananyalcin/public_html/vendors/jqvmap/src/ColorScale/setMax.js
File size: 205 bytes
MIME-type: text/plain
Charset: utf-8

ColorScale.prototype.setMax = function (max) {
  this.clearMaxValue = max;
  if (typeof this.normalize === 'function') {
    this.maxValue = this.normalize(max);
  } else {
    this.maxValue = max;
  }
};