UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 2.76 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 { Base, String_$type, markType } from "./type"; import { Dictionary$2 } from "./Dictionary$2"; import { NumericAxisBaseDescriptionMetadata } from "./NumericAxisBaseDescriptionMetadata"; import { NumericAngleAxisDescription } from "./NumericAngleAxisDescription"; /** * @hidden */ var NumericAngleAxisDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NumericAngleAxisDescriptionMetadata, _super); function NumericAngleAxisDescriptionMetadata() { return _super !== null && _super.apply(this, arguments) || this; } NumericAngleAxisDescriptionMetadata.b = function (a) { if (NumericAngleAxisDescriptionMetadata.a == null) { NumericAngleAxisDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0); NumericAngleAxisDescriptionMetadata.c(NumericAngleAxisDescriptionMetadata.a); } if (a.k(NumericAngleAxisDescriptionMetadata.a)) { return; } a.ad(NumericAngleAxisDescriptionMetadata.a); }; NumericAngleAxisDescriptionMetadata.c = function (a) { NumericAxisBaseDescriptionMetadata.c(a); a.item("CompanionAxisStartAngleOffset", "Number:double"); a.item("CompanionAxisLabelMode", "ExportedType:string:AxisAngleLabelMode"); a.item("CompanionAxisLabelMode@names", "Auto;Center;ClosestPoint"); a.item("StartAngleOffset", "Number:double"); a.item("LabelMode", "ExportedType:string:AxisAngleLabelMode"); a.item("LabelMode@names", "Auto;Center;ClosestPoint"); }; NumericAngleAxisDescriptionMetadata.d = function (a) { NumericAxisBaseDescriptionMetadata.d(a); NumericAngleAxisDescriptionMetadata.b(a); a.af("NumericAngleAxis", function () { return new NumericAngleAxisDescription(); }); a.ae("NumericAngleAxis", NumericAngleAxisDescriptionMetadata.a); }; NumericAngleAxisDescriptionMetadata.$t = markType(NumericAngleAxisDescriptionMetadata, 'NumericAngleAxisDescriptionMetadata'); NumericAngleAxisDescriptionMetadata.a = null; return NumericAngleAxisDescriptionMetadata; }(Base)); export { NumericAngleAxisDescriptionMetadata };