igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
89 lines (88 loc) • 2.96 kB
JavaScript
import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs";
/**
* Represents event arguments for updating content of callout layer
*/
var IgxCalloutContentUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxCalloutContentUpdatingEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxCalloutContentUpdatingEventArgs.prototype.createImplementation = function () {
return new CalloutContentUpdatingEventArgs_internal();
};
Object.defineProperty(IgxCalloutContentUpdatingEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxCalloutContentUpdatingEventArgs.prototype.onImplementationCreated = function () {
};
IgxCalloutContentUpdatingEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxCalloutContentUpdatingEventArgs.prototype, "xValue", {
/**
* Gets data X-value associated with callout layer
*/
get: function () {
return this.i.c;
},
set: function (v) {
this.i.c = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutContentUpdatingEventArgs.prototype, "yValue", {
/**
* Gets data Y-value associated with callout layer
*/
get: function () {
return this.i.d;
},
set: function (v) {
this.i.d = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutContentUpdatingEventArgs.prototype, "item", {
/**
* Gets data item associated with callout layer
*/
get: function () {
return this.i.item;
},
set: function (v) {
this.i.item = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutContentUpdatingEventArgs.prototype, "content", {
/**
* Gets or sets content displayed by callout layer
*/
get: function () {
return this.i.a;
},
set: function (v) {
this.i.a = v;
},
enumerable: false,
configurable: true
});
return IgxCalloutContentUpdatingEventArgs;
}());
export { IgxCalloutContentUpdatingEventArgs };