igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
81 lines (80 loc) • 2.96 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 { EventArgs, markType } from "igniteui-angular-core";
/**
* @hidden
*/
var DataLegendSummaryEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataLegendSummaryEventArgs, _super);
function DataLegendSummaryEventArgs(a, b) {
var _this = _super.call(this) || this;
_this._columnValues = null;
_this._columnMemberPath = null;
_this._summaryValue = 0;
_this._summaryUnits = null;
_this._summaryLabel = null;
_this.columnValues = a;
_this.columnMemberPath = b;
_this.summaryLabel = null;
_this.summaryUnits = null;
return _this;
}
Object.defineProperty(DataLegendSummaryEventArgs.prototype, "columnValues", {
get: function () {
return this._columnValues;
},
set: function (a) {
this._columnValues = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendSummaryEventArgs.prototype, "columnMemberPath", {
get: function () {
return this._columnMemberPath;
},
set: function (a) {
this._columnMemberPath = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendSummaryEventArgs.prototype, "summaryValue", {
get: function () {
return this._summaryValue;
},
set: function (a) {
this._summaryValue = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendSummaryEventArgs.prototype, "summaryUnits", {
get: function () {
return this._summaryUnits;
},
set: function (a) {
this._summaryUnits = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataLegendSummaryEventArgs.prototype, "summaryLabel", {
get: function () {
return this._summaryLabel;
},
set: function (a) {
this._summaryLabel = a;
},
enumerable: false,
configurable: true
});
DataLegendSummaryEventArgs.$t = markType(DataLegendSummaryEventArgs, 'DataLegendSummaryEventArgs', EventArgs.$);
return DataLegendSummaryEventArgs;
}(EventArgs));
export { DataLegendSummaryEventArgs };