igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
189 lines (188 loc) • 6.33 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.h = 0;
_this.i = 0;
_this.n = null;
_this.f = 0;
_this.s = null;
_this.r = null;
_this.q = null;
_this.l = null;
_this.o = null;
_this.t = null;
_this.m = null;
_this.p = null;
_this.u = 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.h;
},
set: function (a) {
this.h = a;
this.e("ColumnIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "seriesIndex", {
get: function () {
return this.i;
},
set: function (a) {
this.i = a;
this.e("SeriesIndex");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "seriesTitle", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.e("SeriesTitle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueOriginal", {
get: function () {
return this.f;
},
set: function (a) {
this.f = a;
this.e("ValueOriginal");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueMemberPath", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.e("ValueMemberPath");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueMemberLabel", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.e("ValueMemberLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueAbbreviation", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.e("ValueAbbreviation");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "labelText", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.e("LabelText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "unitsText", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.e("UnitsText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueText", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.e("ValueText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "labelTextColor", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.e("LabelTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "unitsTextColor", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.e("UnitsTextColor");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendStylingColumnEventArgsDescription.prototype, "valueTextColor", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.e("ValueTextColor");
},
enumerable: false,
configurable: true
});
DataLegendStylingColumnEventArgsDescription.$t = markType(DataLegendStylingColumnEventArgsDescription, 'DataLegendStylingColumnEventArgsDescription', Description.$);
return DataLegendStylingColumnEventArgsDescription;
}(Description));
export { DataLegendStylingColumnEventArgsDescription };