UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

62 lines (61 loc) 2.37 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 { HorizontalAnchoredCategorySeriesDescription } from "./HorizontalAnchoredCategorySeriesDescription"; import { markType } from "./type"; /** * @hidden */ var ColumnSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ColumnSeriesDescription, _super); function ColumnSeriesDescription() { var _this = _super.call(this) || this; _this.g6 = 0; _this.g7 = 0; _this.ha = null; return _this; } ColumnSeriesDescription.prototype.get_type = function () { return "ColumnSeries"; }; Object.defineProperty(ColumnSeriesDescription.prototype, "radiusX", { get: function () { return this.g6; }, set: function (a) { this.g6 = a; this.j("RadiusX"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnSeriesDescription.prototype, "radiusY", { get: function () { return this.g7; }, set: function (a) { this.g7 = a; this.j("RadiusY"); }, enumerable: false, configurable: true }); Object.defineProperty(ColumnSeriesDescription.prototype, "consolidatedColumnVerticalPosition", { get: function () { return this.ha; }, set: function (a) { this.ha = a; this.j("ConsolidatedColumnVerticalPosition"); }, enumerable: false, configurable: true }); ColumnSeriesDescription.$t = markType(ColumnSeriesDescription, 'ColumnSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$); return ColumnSeriesDescription; }(HorizontalAnchoredCategorySeriesDescription)); export { ColumnSeriesDescription };