igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
65 lines (64 loc) • 2.13 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";
/**
* @hidden
*/
var RadialGaugeNeedleParameters = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RadialGaugeNeedleParameters, _super);
function RadialGaugeNeedleParameters() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.m = 0;
_this.k = 0;
_this.n = 0;
_this.l = 0;
_this.e = 0;
_this.d = 0;
_this.q = 0;
_this.p = 0;
_this.j = 0;
_this.b = 0;
_this.c = 0;
_this.i = 0;
_this.r = null;
_this.s = null;
_this.h = 0;
_this.t = null;
_this.u = null;
_this.o = 0;
_this.g = 0;
_this.f = 0;
return _this;
}
RadialGaugeNeedleParameters.prototype.a = function () {
var a = new RadialGaugeNeedleParameters();
a.m = this.m;
a.k = this.k;
a.n = this.n;
a.l = this.l;
a.e = this.e;
a.d = this.d;
a.q = this.q;
a.p = this.p;
a.b = this.b;
a.c = this.c;
a.i = this.i;
a.r = this.r;
a.s = this.s;
a.h = this.h;
a.t = this.t;
a.u = this.u;
a.o = this.o;
a.g = this.g;
a.f = this.f;
return a;
};
RadialGaugeNeedleParameters.$t = markType(RadialGaugeNeedleParameters, 'RadialGaugeNeedleParameters');
return RadialGaugeNeedleParameters;
}(Base));
export { RadialGaugeNeedleParameters };