UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

131 lines (130 loc) 3.84 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 DataLegendStylingColumnEventArgsDescription = /*@__PURE__*/ (() => { class DataLegendStylingColumnEventArgsDescription extends Description { constructor() { super(); this.h = 0; this.i = 0; this.n = null; this.f = 0; this.s = null; this.r = null; this.q = null; this.l = null; this.o = null; this.t = null; this.m = null; this.p = null; this.u = null; } get_type() { return "DataLegendStylingColumnEventArgs"; } get type() { return this.get_type(); } get columnIndex() { return this.h; } set columnIndex(a) { this.h = a; this.e("ColumnIndex"); } get seriesIndex() { return this.i; } set seriesIndex(a) { this.i = a; this.e("SeriesIndex"); } get seriesTitle() { return this.n; } set seriesTitle(a) { this.n = a; this.e("SeriesTitle"); } get valueOriginal() { return this.f; } set valueOriginal(a) { this.f = a; this.e("ValueOriginal"); } get valueMemberPath() { return this.s; } set valueMemberPath(a) { this.s = a; this.e("ValueMemberPath"); } get valueMemberLabel() { return this.r; } set valueMemberLabel(a) { this.r = a; this.e("ValueMemberLabel"); } get valueAbbreviation() { return this.q; } set valueAbbreviation(a) { this.q = a; this.e("ValueAbbreviation"); } get labelText() { return this.l; } set labelText(a) { this.l = a; this.e("LabelText"); } get unitsText() { return this.o; } set unitsText(a) { this.o = a; this.e("UnitsText"); } get valueText() { return this.t; } set valueText(a) { this.t = a; this.e("ValueText"); } get labelTextColor() { return this.m; } set labelTextColor(a) { this.m = a; this.e("LabelTextColor"); } get unitsTextColor() { return this.p; } set unitsTextColor(a) { this.p = a; this.e("UnitsTextColor"); } get valueTextColor() { return this.u; } set valueTextColor(a) { this.u = a; this.e("ValueTextColor"); } } DataLegendStylingColumnEventArgsDescription.$t = markType(DataLegendStylingColumnEventArgsDescription, 'DataLegendStylingColumnEventArgsDescription', Description.$); return DataLegendStylingColumnEventArgsDescription; })();