UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

83 lines (82 loc) 2.59 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 DataLegendStylingRowEventArgsDescription = /*@__PURE__*/ (() => { class DataLegendStylingRowEventArgsDescription extends Description { constructor() { super(); this.l = null; this.f = false; this.g = false; this.j = 0; this.m = null; this.n = null; this.o = null; } get_type() { return "DataLegendStylingRowEventArgs"; } get type() { return this.get_type(); } get badgeShape() { return this.l; } set badgeShape(a) { this.l = a; this.e("BadgeShape"); } get isBadgeVisible() { return this.f; } set isBadgeVisible(a) { this.f = a; this.e("IsBadgeVisible"); } get isRowVisible() { return this.g; } set isRowVisible(a) { this.g = a; this.e("IsRowVisible"); } get seriesIndex() { return this.j; } set seriesIndex(a) { this.j = a; this.e("SeriesIndex"); } get seriesTitle() { return this.m; } set seriesTitle(a) { this.m = a; this.e("SeriesTitle"); } get titleText() { return this.n; } set titleText(a) { this.n = a; this.e("TitleText"); } get titleTextColor() { return this.o; } set titleTextColor(a) { this.o = a; this.e("TitleTextColor"); } } DataLegendStylingRowEventArgsDescription.$t = markType(DataLegendStylingRowEventArgsDescription, 'DataLegendStylingRowEventArgsDescription', Description.$); return DataLegendStylingRowEventArgsDescription; })();