igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
61 lines (60 loc) • 2.18 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 StyleShapeEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(StyleShapeEventArgs, _super);
function StyleShapeEventArgs(a, b, c) {
var _this = _super.call(this) || this;
_this._item = null;
_this._container = null;
_this._shapeStyle = null;
_this.item = a;
_this.container = b;
_this.shapeStyle = c;
return _this;
}
Object.defineProperty(StyleShapeEventArgs.prototype, "item", {
get: function () {
return this._item;
},
set: function (a) {
this._item = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StyleShapeEventArgs.prototype, "container", {
get: function () {
return this._container;
},
set: function (a) {
this._container = a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(StyleShapeEventArgs.prototype, "shapeStyle", {
get: function () {
return this._shapeStyle;
},
set: function (a) {
this._shapeStyle = a;
},
enumerable: false,
configurable: true
});
StyleShapeEventArgs.prototype.d = function () {
return this.shapeStyle;
};
StyleShapeEventArgs.$t = markType(StyleShapeEventArgs, 'StyleShapeEventArgs', EventArgs.$);
return StyleShapeEventArgs;
}(EventArgs));
export { StyleShapeEventArgs };