igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
93 lines (92 loc) • 2.75 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 WebPivotValueDescription = /*@__PURE__*/ (() => {
class WebPivotValueDescription extends Description {
constructor() {
super();
this.x = null;
this.v = null;
this.m = null;
this.k = null;
this.p = false;
this.r = null;
this.u = null;
this.w = null;
}
get_type() {
return "WebPivotValue";
}
get type() {
return this.get_type();
}
get member() {
return this.x;
}
set member(a) {
this.x = a;
this.j("Member");
}
get displayName() {
return this.v;
}
set displayName(a) {
this.v = a;
this.j("DisplayName");
}
get aggregate() {
return this.m;
}
set aggregate(a) {
this.m = a;
this.j("Aggregate");
}
get aggregateList() {
return this.k;
}
set aggregateList(a) {
this.k = a;
this.j("AggregateList");
}
get enabled() {
return this.p;
}
set enabled(a) {
this.p = a;
this.j("Enabled");
}
get styles() {
return this.r;
}
set styles(a) {
this.r = a;
this.j("Styles");
}
get dataType() {
return this.u;
}
set dataType(a) {
this.u = a;
this.j("DataType");
}
get formatterRef() {
return this.w;
}
set formatterRef(a) {
this.w = a;
this.j("FormatterRef");
}
}
WebPivotValueDescription.$t = markType(WebPivotValueDescription, 'WebPivotValueDescription', Description.$);
WebPivotValueDescription.__marshalByValue = true;
WebPivotValueDescription.__marshalByValueAlias = "PivotValue";
return WebPivotValueDescription;
})();