igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
101 lines (100 loc) • 2.97 kB
JavaScript
/*
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 WebPivotDimensionDescription = /*@__PURE__*/ (() => {
class WebPivotDimensionDescription extends Description {
constructor() {
super();
this.h = null;
this.r = null;
this.k = false;
this.f = null;
this.s = null;
this.p = null;
this.t = null;
this.m = 0;
this.q = null;
}
get_type() {
return "WebPivotDimension";
}
get type() {
return this.get_type();
}
get childLevel() {
return this.h;
}
set childLevel(a) {
this.h = a;
this.e("ChildLevel");
}
get memberName() {
return this.r;
}
set memberName(a) {
this.r = a;
this.e("MemberName");
}
get enabled() {
return this.k;
}
set enabled(a) {
this.k = a;
this.e("Enabled");
}
get filter() {
return this.f;
}
set filter(a) {
this.f = a;
this.e("Filter");
}
get sortDirection() {
return this.s;
}
set sortDirection(a) {
this.s = a;
this.e("SortDirection");
}
get dataType() {
return this.p;
}
set dataType(a) {
this.p = a;
this.e("DataType");
}
get width() {
return this.t;
}
set width(a) {
this.t = a;
this.e("Width");
}
get level() {
return this.m;
}
set level(a) {
this.m = a;
this.e("Level");
}
get memberFunctionRef() {
return this.q;
}
set memberFunctionRef(a) {
this.q = a;
this.e("MemberFunctionRef");
}
}
WebPivotDimensionDescription.$t = markType(WebPivotDimensionDescription, 'WebPivotDimensionDescription', Description.$);
WebPivotDimensionDescription.__marshalByValue = true;
WebPivotDimensionDescription.__marshalByValueAlias = "PivotDimension";
return WebPivotDimensionDescription;
})();