igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 3.05 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 { AssigningSeriesStyleEventArgsBaseDescription } from "./AssigningSeriesStyleEventArgsBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var AssigningSeriesShapeStyleEventArgsBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(AssigningSeriesShapeStyleEventArgsBaseDescription, _super);
function AssigningSeriesShapeStyleEventArgsBaseDescription() {
var _this = _super.call(this) || this;
_this.bj = 0;
_this.bf = null;
_this.bh = 0;
_this.bi = 0;
return _this;
}
AssigningSeriesShapeStyleEventArgsBaseDescription.prototype.get_type = function () {
return "AssigningSeriesShapeStyleEventArgsBase";
};
Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "strokeThickness", {
get: function () {
return this.bj;
},
set: function (a) {
this.bj = a;
this.j("StrokeThickness");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "strokeDashArray", {
get: function () {
return this.bf;
},
set: function (a) {
this.bf = a;
this.j("StrokeDashArray");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "radiusX", {
get: function () {
return this.bh;
},
set: function (a) {
this.bh = a;
this.j("RadiusX");
},
enumerable: false,
configurable: true
});
Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "radiusY", {
get: function () {
return this.bi;
},
set: function (a) {
this.bi = a;
this.j("RadiusY");
},
enumerable: false,
configurable: true
});
AssigningSeriesShapeStyleEventArgsBaseDescription.$t = markType(AssigningSeriesShapeStyleEventArgsBaseDescription, 'AssigningSeriesShapeStyleEventArgsBaseDescription', AssigningSeriesStyleEventArgsBaseDescription.$);
return AssigningSeriesShapeStyleEventArgsBaseDescription;
}(AssigningSeriesStyleEventArgsBaseDescription));
export { AssigningSeriesShapeStyleEventArgsBaseDescription };