UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

92 lines (91 loc) 2.96 kB
import { CalloutContentUpdatingEventArgs as CalloutContentUpdatingEventArgs_internal } from "./CalloutContentUpdatingEventArgs"; /** * Represents event arguments for updating content of callout layer */ var IgcCalloutContentUpdatingEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgcCalloutContentUpdatingEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcCalloutContentUpdatingEventArgs.prototype.createImplementation = function () { return new CalloutContentUpdatingEventArgs_internal(); }; Object.defineProperty(IgcCalloutContentUpdatingEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcCalloutContentUpdatingEventArgs.prototype.onImplementationCreated = function () { }; IgcCalloutContentUpdatingEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcCalloutContentUpdatingEventArgs.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(IgcCalloutContentUpdatingEventArgs.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(IgcCalloutContentUpdatingEventArgs.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(IgcCalloutContentUpdatingEventArgs.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 IgcCalloutContentUpdatingEventArgs; }()); export { IgcCalloutContentUpdatingEventArgs };