UNPKG

igniteui-react-core

Version:
249 lines (248 loc) 7.4 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 DataAnnotationInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DataAnnotationInfoDescription, _super); function DataAnnotationInfoDescription() { var _this = _super.call(this) || this; _this.m = 0; _this.p = 0; _this.o = 0; _this.r = 0; _this.n = 0; _this.q = 0; _this.j = 0; _this.k = 0; _this.l = 0; _this.af = null; _this.ag = null; _this.ai = null; _this.aj = null; _this.ah = null; _this.ad = null; _this.ae = null; _this.h = 0; _this.i = 0; return _this; } DataAnnotationInfoDescription.prototype.get_type = function () { return "DataAnnotationInfo"; }; Object.defineProperty(DataAnnotationInfoDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "xAxisPixel", { get: function () { return this.m; }, set: function (a) { this.m = a; this.g("XAxisPixel"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "yAxisPixel", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("YAxisPixel"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "xAxisWindow", { get: function () { return this.o; }, set: function (a) { this.o = a; this.g("XAxisWindow"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "yAxisWindow", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("YAxisWindow"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "xAxisValue", { get: function () { return this.n; }, set: function (a) { this.n = a; this.g("XAxisValue"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "yAxisValue", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("YAxisValue"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "dataIndex", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("DataIndex"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "dataValueX", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("DataValueX"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "dataValueY", { get: function () { return this.l; }, set: function (a) { this.l = a; this.g("DataValueY"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "dataLabelX", { get: function () { return this.af; }, set: function (a) { this.af = a; this.g("DataLabelX"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "dataLabelY", { get: function () { return this.ag; }, set: function (a) { this.ag = a; this.g("DataLabelY"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "xAxisLabel", { get: function () { return this.ai; }, set: function (a) { this.ai = a; this.g("XAxisLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "yAxisLabel", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.g("YAxisLabel"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "textColor", { get: function () { return this.ah; }, set: function (a) { this.ah = a; this.g("TextColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "background", { get: function () { return this.ad; }, set: function (a) { this.ad = a; this.g("Background"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "borderColor", { get: function () { return this.ae; }, set: function (a) { this.ae = a; this.g("BorderColor"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "borderRadius", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("BorderRadius"); }, enumerable: false, configurable: true }); Object.defineProperty(DataAnnotationInfoDescription.prototype, "borderThickness", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("BorderThickness"); }, enumerable: false, configurable: true }); DataAnnotationInfoDescription.$t = markType(DataAnnotationInfoDescription, 'DataAnnotationInfoDescription', Description.$); return DataAnnotationInfoDescription; }(Description)); export { DataAnnotationInfoDescription };