UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

219 lines (218 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let DataLegendSeriesValueInfoDescription = /*@__PURE__*/ (() => { class DataLegendSeriesValueInfoDescription extends Description { constructor() { super(); this.z = 0; this.am = null; this.an = null; this.ao = null; this.ap = null; this.ah = null; this.ac = 0; this.ab = 0; this.n = false; this.m = false; this.i = false; this.l = false; this.j = false; this.k = false; this.h = false; this.aq = null; this.ad = 0; this.o = false; this.g = false; this.f = false; this.aj = null; this.ai = null; this.ak = null; this.al = null; } get_type() { return "DataLegendSeriesValueInfo"; } get type() { return this.get_type(); } get value() { return this.z; } set value(a) { this.z = a; this.e("Value"); } get valueNegativePrefix() { return this.am; } set valueNegativePrefix(a) { this.am = a; this.e("ValueNegativePrefix"); } get valueNegativeSuffix() { return this.an; } set valueNegativeSuffix(a) { this.an = a; this.e("ValueNegativeSuffix"); } get valuePositivePrefix() { return this.ao; } set valuePositivePrefix(a) { this.ao = a; this.e("ValuePositivePrefix"); } get valuePositiveSuffix() { return this.ap; } set valuePositiveSuffix(a) { this.ap = a; this.e("ValuePositiveSuffix"); } get formatWithSeriesColor() { return this.ah; } set formatWithSeriesColor(a) { this.ah = a; this.e("FormatWithSeriesColor"); } get formatMinFractions() { return this.ac; } set formatMinFractions(a) { this.ac = a; this.e("FormatMinFractions"); } get formatMaxFractions() { return this.ab; } set formatMaxFractions(a) { this.ab = a; this.e("FormatMaxFractions"); } get formatUsePositiveColor() { return this.n; } set formatUsePositiveColor(a) { this.n = a; this.e("FormatUsePositiveColor"); } get formatUseNegativeColor() { return this.m; } set formatUseNegativeColor(a) { this.m = a; this.e("FormatUseNegativeColor"); } get formatAllowCurrency() { return this.i; } set formatAllowCurrency(a) { this.i = a; this.e("FormatAllowCurrency"); } get formatAllowPercent() { return this.l; } set formatAllowPercent(a) { this.l = a; this.e("FormatAllowPercent"); } get formatAllowDecimal() { return this.j; } set formatAllowDecimal(a) { this.j = a; this.e("FormatAllowDecimal"); } get formatAllowInteger() { return this.k; } set formatAllowInteger(a) { this.k = a; this.e("FormatAllowInteger"); } get formatAllowAbbreviation() { return this.h; } set formatAllowAbbreviation(a) { this.h = a; this.e("FormatAllowAbbreviation"); } get valueType() { return this.aq; } set valueType(a) { this.aq = a; this.e("ValueType"); } get index() { return this.ad; } set index(a) { this.ad = a; this.e("Index"); } get isExcludeByDefault() { return this.o; } set isExcludeByDefault(a) { this.o = a; this.e("IsExcludeByDefault"); } get allowUnits() { return this.g; } set allowUnits(a) { this.g = a; this.e("AllowUnits"); } get allowLabels() { return this.f; } set allowLabels(a) { this.f = a; this.e("AllowLabels"); } get memberPath() { return this.aj; } set memberPath(a) { this.aj = a; this.e("MemberPath"); } get memberLabel() { return this.ai; } set memberLabel(a) { this.ai = a; this.e("MemberLabel"); } get memberSymbol() { return this.ak; } set memberSymbol(a) { this.ak = a; this.e("MemberSymbol"); } get memberUnit() { return this.al; } set memberUnit(a) { this.al = a; this.e("MemberUnit"); } } DataLegendSeriesValueInfoDescription.$t = markType(DataLegendSeriesValueInfoDescription, 'DataLegendSeriesValueInfoDescription', Description.$); return DataLegendSeriesValueInfoDescription; })();