UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

237 lines (236 loc) 7.88 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var AssigningSeriesStyleEventArgsBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AssigningSeriesStyleEventArgsBaseDescription, _super); function AssigningSeriesStyleEventArgsBaseDescription() { var _this = _super.call(this) || this; _this.ae = 0; _this.ad = 0; _this.q = new Date(); _this.p = new Date(); _this.ai = null; _this.ah = null; _this.aj = null; _this.v = 0; _this.t = 0; _this.f = null; _this.u = 0; _this.w = 0; _this.x = 0; _this.i = false; _this.h = false; _this.j = false; _this.k = false; return _this; } AssigningSeriesStyleEventArgsBaseDescription.prototype.get_type = function () { return "AssigningSeriesStyleEventArgsBase"; }; Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "startIndex", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.e("StartIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "endIndex", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.e("EndIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "startDate", { get: function () { return this.q; }, set: function (a) { this.q = a; this.e("StartDate"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "endDate", { get: function () { return this.p; }, set: function (a) { this.p = a; this.e("EndDate"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "getItemsRef", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.e("GetItemsRef"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "fill", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.e("Fill"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "stroke", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.e("Stroke"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "opacity", { get: function () { return this.v; }, set: function (a) { this.v = a; this.e("Opacity"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "fadeOpacity", { get: function () { return this.t; }, set: function (a) { this.t = a; this.e("FadeOpacity"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "highlightingInfo", { get: function () { return this.f; }, set: function (a) { this.f = a; this.e("HighlightingInfo"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "maxAllSeriesHighlightingProgress", { get: function () { return this.u; }, set: function (a) { this.u = a; this.e("MaxAllSeriesHighlightingProgress"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "sumAllSeriesHighlightingProgress", { get: function () { return this.w; }, set: function (a) { this.w = a; this.e("SumAllSeriesHighlightingProgress"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "totalAllSeriesHighlightingProgress", { get: function () { return this.x; }, set: function (a) { this.x = a; this.e("TotalAllSeriesHighlightingProgress"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "highlightingHandled", { get: function () { return this.i; }, set: function (a) { this.i = a; this.e("HighlightingHandled"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "hasDateRange", { get: function () { return this.h; }, set: function (a) { this.h = a; this.e("HasDateRange"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "isNegativeShape", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("IsNegativeShape"); }, enumerable: false, configurable: true }); Object.defineProperty(AssigningSeriesStyleEventArgsBaseDescription.prototype, "isThumbnail", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("IsThumbnail"); }, enumerable: false, configurable: true }); AssigningSeriesStyleEventArgsBaseDescription.$t = markType(AssigningSeriesStyleEventArgsBaseDescription, 'AssigningSeriesStyleEventArgsBaseDescription', Description.$); return AssigningSeriesStyleEventArgsBaseDescription; }(Description)); export { AssigningSeriesStyleEventArgsBaseDescription };