igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
139 lines (138 loc) • 4.04 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 DataLegendStylingColumnEventArgsDescription = /*@__PURE__*/ (() => {
class DataLegendStylingColumnEventArgsDescription extends Description {
constructor() {
super();
this.m = 0;
this.n = 0;
this.t = null;
this.k = 0;
this.y = null;
this.x = null;
this.w = null;
this.r = null;
this.u = null;
this.z = null;
this.s = null;
this.v = null;
this.aa = null;
this.q = null;
}
get_type() {
return "DataLegendStylingColumnEventArgs";
}
get type() {
return this.get_type();
}
get columnIndex() {
return this.m;
}
set columnIndex(a) {
this.m = a;
this.j("ColumnIndex");
}
get seriesIndex() {
return this.n;
}
set seriesIndex(a) {
this.n = a;
this.j("SeriesIndex");
}
get seriesTitle() {
return this.t;
}
set seriesTitle(a) {
this.t = a;
this.j("SeriesTitle");
}
get valueOriginal() {
return this.k;
}
set valueOriginal(a) {
this.k = a;
this.j("ValueOriginal");
}
get valueMemberPath() {
return this.y;
}
set valueMemberPath(a) {
this.y = a;
this.j("ValueMemberPath");
}
get valueMemberLabel() {
return this.x;
}
set valueMemberLabel(a) {
this.x = a;
this.j("ValueMemberLabel");
}
get valueAbbreviation() {
return this.w;
}
set valueAbbreviation(a) {
this.w = a;
this.j("ValueAbbreviation");
}
get labelText() {
return this.r;
}
set labelText(a) {
this.r = a;
this.j("LabelText");
}
get unitsText() {
return this.u;
}
set unitsText(a) {
this.u = a;
this.j("UnitsText");
}
get valueText() {
return this.z;
}
set valueText(a) {
this.z = a;
this.j("ValueText");
}
get labelTextColor() {
return this.s;
}
set labelTextColor(a) {
this.s = a;
this.j("LabelTextColor");
}
get unitsTextColor() {
return this.v;
}
set unitsTextColor(a) {
this.v = a;
this.j("UnitsTextColor");
}
get valueTextColor() {
return this.aa;
}
set valueTextColor(a) {
this.aa = a;
this.j("ValueTextColor");
}
get groupName() {
return this.q;
}
set groupName(a) {
this.q = a;
this.j("GroupName");
}
}
DataLegendStylingColumnEventArgsDescription.$t = markType(DataLegendStylingColumnEventArgsDescription, 'DataLegendStylingColumnEventArgsDescription', Description.$);
return DataLegendStylingColumnEventArgsDescription;
})();