igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
141 lines (140 loc) • 4.53 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var RadialGaugeRangeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(RadialGaugeRangeDescription, _super);
function RadialGaugeRangeDescription() {
var _this = _super.call(this) || this;
_this.y = null;
_this.z = null;
_this.p = 0;
_this.k = 0;
_this.m = 0;
_this.l = 0;
_this.o = 0;
_this.n = 0;
_this.q = 0;
return _this;
}
RadialGaugeRangeDescription.prototype.get_type = function () {
return "RadialGaugeRange";
};
Object.defineProperty(RadialGaugeRangeDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "brush", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Brush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outline", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("Outline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "startValue", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("StartValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "endValue", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("EndValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "innerStartExtent", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("InnerStartExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "innerEndExtent", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("InnerEndExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outerStartExtent", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("OuterStartExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outerEndExtent", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("OuterEndExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "strokeThickness", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("StrokeThickness");
},
enumerable: false,
configurable: true
});
RadialGaugeRangeDescription.$t = markType(RadialGaugeRangeDescription, 'RadialGaugeRangeDescription', Description.$);
return RadialGaugeRangeDescription;
}(Description));
export { RadialGaugeRangeDescription };