igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
29 lines (28 loc) • 1.27 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { Base, markType } from "igniteui-angular-core";
import { List$1 } from "igniteui-angular-core";
import { GradientStopData } from "./GradientStopData";
/**
* @hidden
*/
var GradientData = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GradientData, _super);
function GradientData() {
var _this = _super.call(this) || this;
_this.a = null;
_this.a = new List$1(GradientStopData.$, 0);
return _this;
}
GradientData.prototype.b = function () {
this.a.aa(function (a, b) { return Base.compareSimple(a.a, b.a); });
};
GradientData.$t = markType(GradientData, 'GradientData');
return GradientData;
}(Base));
export { GradientData };