File "ColorScale.js"
Full Path: /home/cananyalcin/public_html/vendors/jqvmap/src/ColorScale.js
File size: 348 bytes
MIME-type: text/plain
Charset: utf-8
var ColorScale = function (colors, normalizeFunction, minValue, maxValue) {
if (colors) {
this.setColors(colors);
}
if (normalizeFunction) {
this.setNormalizeFunction(normalizeFunction);
}
if (minValue) {
this.setMin(minValue);
}
if (minValue) {
this.setMax(maxValue);
}
};
ColorScale.prototype = {
colors: []
};