igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
97 lines (95 loc) • 2.87 kB
JavaScript
/**
* Provides data for legend mouse button related events.
*/
var IgxLegendMouseEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxLegendMouseEventArgs() {
}
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxLegendMouseEventArgs.prototype.onImplementationCreated = function () {
};
IgxLegendMouseEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "originalSource", {
/**
* Gets a reference to the object that raised the event.
*/
get: function () {
return this.i.originalSource;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "item", {
/**
* Gets the ItemsSource item associated with the current event.
*/
get: function () {
return this.i.item;
},
set: function (v) {
this.i.item = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "series", {
/**
* Gets the series associated with the current event.
*/
get: function () {
return this.i.series;
},
set: function (v) {
this.i.series = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "chart", {
/**
* Gets the Chart associated with the current event.
*/
get: function () {
return this.i.chart;
},
set: function (v) {
this.i.chart = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxLegendMouseEventArgs.prototype, "legendItem", {
/**
* The legend item in context.
*/
get: function () {
return this.i.legendItem;
},
set: function (v) {
this.i.legendItem = v;
},
enumerable: false,
configurable: true
});
/**
* Provides a human readable description of the mouse button event.
*/
IgxLegendMouseEventArgs.prototype.toString = function () {
var iv = this.i.toString();
return (iv);
};
return IgxLegendMouseEventArgs;
}());
export { IgxLegendMouseEventArgs };