UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

201 lines (200 loc) 6.29 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 AxisAnnotationDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(AxisAnnotationDescription, _super); function AxisAnnotationDescription() { var _this = _super.call(this) || this; _this.z = null; _this.x = null; _this.h = 0; _this.v = null; _this.f = null; _this.u = null; _this.y = null; _this.t = null; _this.w = null; _this.m = 0; _this.j = 0; _this.l = 0; _this.k = 0; _this.i = 0; return _this; } AxisAnnotationDescription.prototype.get_type = function () { return "AxisAnnotation"; }; Object.defineProperty(AxisAnnotationDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "valueRef", { get: function () { return this.z; }, set: function (a) { this.z = a; this.e("ValueRef"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "text", { get: function () { return this.x; }, set: function (a) { this.x = a; this.e("Text"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "backgroundCornerRadius", { get: function () { return this.h; }, set: function (a) { this.h = a; this.e("BackgroundCornerRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "labelFormat", { get: function () { return this.v; }, set: function (a) { this.v = a; this.e("LabelFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "labelFormatSpecifiers", { get: function () { return this.f; }, set: function (a) { this.f = a; this.e("LabelFormatSpecifiers"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "formatLabelRef", { get: function () { return this.u; }, set: function (a) { this.u = a; this.e("FormatLabelRef"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "textColor", { get: function () { return this.y; }, set: function (a) { this.y = a; this.e("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "background", { get: function () { return this.t; }, set: function (a) { this.t = a; this.e("Background"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "outline", { get: function () { return this.w; }, set: function (a) { this.w = a; this.e("Outline"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "strokeThickness", { get: function () { return this.m; }, set: function (a) { this.m = a; this.e("StrokeThickness"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "backgroundPaddingLeft", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("BackgroundPaddingLeft"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "backgroundPaddingTop", { get: function () { return this.l; }, set: function (a) { this.l = a; this.e("BackgroundPaddingTop"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "backgroundPaddingRight", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("BackgroundPaddingRight"); }, enumerable: false, configurable: true }); Object.defineProperty(AxisAnnotationDescription.prototype, "backgroundPaddingBottom", { get: function () { return this.i; }, set: function (a) { this.i = a; this.e("BackgroundPaddingBottom"); }, enumerable: false, configurable: true }); AxisAnnotationDescription.$t = markType(AxisAnnotationDescription, 'AxisAnnotationDescription', Description.$); return AxisAnnotationDescription; }(Description)); export { AxisAnnotationDescription };