igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
201 lines (200 loc) • 6.68 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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var DataLegendStylingColumnEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataLegendStylingColumnEventArgsDescription, _super);
function DataLegendStylingColumnEventArgsDescription() {
var _this = _super.call(this) || this;
_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;
return _this;
}
DataLegendStylingColumnEventArgsDescription.prototype.get_type = function () {
return "DataLegendStylingColumnEventArgs";
};
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "columnIndex", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ColumnIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "seriesIndex", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("SeriesIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "seriesTitle", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("SeriesTitle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueOriginal", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("ValueOriginal");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueMemberPath", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueMemberLabel", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("ValueMemberLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueAbbreviation", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("ValueAbbreviation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "labelText", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("LabelText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "unitsText", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("UnitsText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueText", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("ValueText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "labelTextColor", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("LabelTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "unitsTextColor", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("UnitsTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueTextColor", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("ValueTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "groupName", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("GroupName");
},
enumerable: false,
configurable: true
});
DataLegendStylingColumnEventArgsDescription.$t = markType(DataLegendStylingColumnEventArgsDescription, 'DataLegendStylingColumnEventArgsDescription', Description.$);
return DataLegendStylingColumnEventArgsDescription;
}(Description));
export { DataLegendStylingColumnEventArgsDescription };