igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
114 lines (113 loc) • 3.8 kB
JavaScript
import { IgxSeriesComponent } from "./igx-series-component";
import { CalloutSeriesSelectingEventArgs as CalloutSeriesSelectingEventArgs_internal } from "./CalloutSeriesSelectingEventArgs";
/**
* Represents event arguments for selecting callout layer
*/
var IgxCalloutSeriesSelectingEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxCalloutSeriesSelectingEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxCalloutSeriesSelectingEventArgs.prototype.createImplementation = function () {
return new CalloutSeriesSelectingEventArgs_internal();
};
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxCalloutSeriesSelectingEventArgs.prototype.onImplementationCreated = function () {
};
IgxCalloutSeriesSelectingEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "xValue", {
/**
* Gets data X-value assositated with callout layer
*/
get: function () {
return this.i.c;
},
set: function (v) {
this.i.c = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "yValue", {
/**
* Gets data Y-value assositated with callout layer
*/
get: function () {
return this.i.d;
},
set: function (v) {
this.i.d = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "item", {
/**
* Gets data item assositated with callout layer
*/
get: function () {
return this.i.item;
},
set: function (v) {
this.i.item = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "series", {
/**
* Gets or sets series object assositated with callout layer
*/
get: function () {
var r = this.i.a;
if (r == null) {
return null;
}
if (!r.externalObject) {
var e = IgxSeriesComponent._createFromInternal(r);
if (e) {
e._implementation = r;
}
r.externalObject = e;
}
return r.externalObject;
},
set: function (v) {
v == null ? this.i.a = null : this.i.a = v.i;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxCalloutSeriesSelectingEventArgs.prototype, "seriesName", {
/**
* Gets or sets series name assositated with callout layer
*/
get: function () {
return this.i.e;
},
set: function (v) {
this.i.e = v;
},
enumerable: false,
configurable: true
});
return IgxCalloutSeriesSelectingEventArgs;
}());
export { IgxCalloutSeriesSelectingEventArgs };