UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

85 lines (84 loc) 2.56 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 DataContextDescription = /*@__PURE__*/ (() => { class DataContextDescription extends Description { constructor() { super(); this.r = null; this.o = null; this.t = null; this.q = null; this.p = null; this.l = 0; this.s = null; } get_type() { return "DataContext"; } get type() { return this.get_type(); } get itemRef() { return this.r; } set itemRef(a) { this.r = a; this.j("ItemRef"); } get actualItemBrush() { return this.o; } set actualItemBrush(a) { this.o = a; this.j("ActualItemBrush"); } get outline() { return this.t; } set outline(a) { this.t = a; this.j("Outline"); } get itemLabelRef() { return this.q; } set itemLabelRef(a) { this.q = a; this.j("ItemLabelRef"); } get itemBrush() { return this.p; } set itemBrush(a) { this.p = a; this.j("ItemBrush"); } get thickness() { return this.l; } set thickness(a) { this.l = a; this.j("Thickness"); } get legendLabelRef() { return this.s; } set legendLabelRef(a) { this.s = a; this.j("LegendLabelRef"); } } DataContextDescription.$t = markType(DataContextDescription, 'DataContextDescription', Description.$); DataContextDescription.__marshalByValue = true; DataContextDescription.__marshalByValueAlias = "DataContext"; return DataContextDescription; })();