UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

74 lines (73 loc) 3.05 kB
/* 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.bg = 0; _this.bc = null; _this.be = 0; _this.bf = 0; return _this; } AssigningSeriesShapeStyleEventArgsBaseDescription.prototype.get_type = function () { return "AssigningSeriesShapeStyleEventArgsBase"; }; Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "strokeThickness", { get: function () { return this.bg; }, set: function (a) { this.bg = a; this.g("StrokeThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "strokeDashArray", { get: function () { return this.bc; }, set: function (a) { this.bc = a; this.g("StrokeDashArray"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "radiusX", { get: function () { return this.be; }, set: function (a) { this.be = a; this.g("RadiusX"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesShapeStyleEventArgsBaseDescription.prototype, "radiusY", { get: function () { return this.bf; }, set: function (a) { this.bf = a; this.g("RadiusY"); }, enumerable: false, configurable: true }); AssigningSeriesShapeStyleEventArgsBaseDescription.$t = markType(AssigningSeriesShapeStyleEventArgsBaseDescription, 'AssigningSeriesShapeStyleEventArgsBaseDescription', AssigningSeriesStyleEventArgsBaseDescription.$); return AssigningSeriesShapeStyleEventArgsBaseDescription; }(AssigningSeriesStyleEventArgsBaseDescription)); export { AssigningSeriesShapeStyleEventArgsBaseDescription };