UNPKG

zrender

Version:

A lightweight graphic library providing 2d draw for Apache ECharts

14 lines (13 loc) 336 B
var Gradient = (function () { function Gradient(colorStops) { this.colorStops = colorStops || []; } Gradient.prototype.addColorStop = function (offset, color) { this.colorStops.push({ offset: offset, color: color }); }; return Gradient; }()); export default Gradient;