igniteui-react-core
Version:
Ignite UI React Core.
153 lines (152 loc) • 4.71 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.w = null;
_this.v = null;
_this.x = null;
_this.m = 0;
_this.h = 0;
_this.j = 0;
_this.i = 0;
_this.l = 0;
_this.k = 0;
_this.n = 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, "name", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.g("Name");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "brush", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.g("Brush");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outline", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.g("Outline");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "startValue", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.g("StartValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "endValue", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("EndValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "innerStartExtent", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("InnerStartExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "innerEndExtent", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.g("InnerEndExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outerStartExtent", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("OuterStartExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "outerEndExtent", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.g("OuterEndExtent");
},
enumerable: false,
configurable: true
});
Object.defineProperty(RadialGaugeRangeDescription.prototype, "strokeThickness", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("StrokeThickness");
},
enumerable: false,
configurable: true
});
RadialGaugeRangeDescription.$t = markType(RadialGaugeRangeDescription, 'RadialGaugeRangeDescription', Description.$);
return RadialGaugeRangeDescription;
}(Description));
export { RadialGaugeRangeDescription };