UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.79 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.q = null; this.k = false; this.l = false; this.o = 0; this.s = null; this.t = null; this.r = null; this.u = null; } get_type() { return "DataLegendStylingRowEventArgs"; } get type() { return this.get_type(); } get badgeShape() { return this.q; } set badgeShape(a) { this.q = a; this.j("BadgeShape"); } get isBadgeVisible() { return this.k; } set isBadgeVisible(a) { this.k = a; this.j("IsBadgeVisible"); } get isRowVisible() { return this.l; } set isRowVisible(a) { this.l = a; this.j("IsRowVisible"); } get seriesIndex() { return this.o; } set seriesIndex(a) { this.o = a; this.j("SeriesIndex"); } get seriesTitle() { return this.s; } set seriesTitle(a) { this.s = a; this.j("SeriesTitle"); } get titleText() { return this.t; } set titleText(a) { this.t = a; this.j("TitleText"); } get groupName() { return this.r; } set groupName(a) { this.r = a; this.j("GroupName"); } get titleTextColor() { return this.u; } set titleTextColor(a) { this.u = a; this.j("TitleTextColor"); } } DataLegendStylingRowEventArgsDescription.$t = markType(DataLegendStylingRowEventArgsDescription, 'DataLegendStylingRowEventArgsDescription', Description.$); return DataLegendStylingRowEventArgsDescription; })();