UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.19 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 DataLegendSummaryEventArgsDescription = /*@__PURE__*/ (() => { class DataLegendSummaryEventArgsDescription extends Description { constructor() { super(); this.k = null; this.o = null; this.m = 0; this.q = null; this.p = null; } get_type() { return "DataLegendSummaryEventArgs"; } get type() { return this.get_type(); } get columnValues() { return this.k; } set columnValues(a) { this.k = a; this.j("ColumnValues"); } get columnMemberPath() { return this.o; } set columnMemberPath(a) { this.o = a; this.j("ColumnMemberPath"); } get summaryValue() { return this.m; } set summaryValue(a) { this.m = a; this.j("SummaryValue"); } get summaryUnits() { return this.q; } set summaryUnits(a) { this.q = a; this.j("SummaryUnits"); } get summaryLabel() { return this.p; } set summaryLabel(a) { this.p = a; this.j("SummaryLabel"); } } DataLegendSummaryEventArgsDescription.$t = markType(DataLegendSummaryEventArgsDescription, 'DataLegendSummaryEventArgsDescription', Description.$); return DataLegendSummaryEventArgsDescription; })();