UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

38 lines (37 loc) 1.66 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 AreaSeriesDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AreaSeriesDescription, _super); function AreaSeriesDescription() { var _this = _super.call(this) || this; _this.g1 = null; return _this; } AreaSeriesDescription.prototype.get_type = function () { return "AreaSeries"; }; Object.defineProperty(AreaSeriesDescription.prototype, "unknownValuePlotting", { get: function () { return this.g1; }, set: function (a) { this.g1 = a; this.g("UnknownValuePlotting"); }, enumerable: false, configurable: true }); AreaSeriesDescription.$t = markType(AreaSeriesDescription, 'AreaSeriesDescription', HorizontalAnchoredCategorySeriesDescription.$); return AreaSeriesDescription; }(HorizontalAnchoredCategorySeriesDescription)); export { AreaSeriesDescription };