UNPKG

igniteui-webcomponents-charts

Version:

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

64 lines (63 loc) 2.43 kB
import { IgcUserAnnotationInformation } from "./igc-user-annotation-information"; import { UserAnnotationInformationEventArgs as UserAnnotationInformationEventArgs_internal } from "./UserAnnotationInformationEventArgs"; var IgcUserAnnotationInformationEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgcUserAnnotationInformationEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgcUserAnnotationInformationEventArgs.prototype.createImplementation = function () { return new UserAnnotationInformationEventArgs_internal(); }; Object.defineProperty(IgcUserAnnotationInformationEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgcUserAnnotationInformationEventArgs.prototype.onImplementationCreated = function () { }; IgcUserAnnotationInformationEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgcUserAnnotationInformationEventArgs.prototype, "annotationInfo", { get: function () { var r = this.i.annotationInfo; if (r == null) { return null; } if (!r.externalObject) { var e = new IgcUserAnnotationInformation(); if (r.$type) { e._implementation = r; } else { if (e.i.setNativeElement) { e.i.setNativeElement(r); } } r.externalObject = e; } return r.externalObject; }, set: function (v) { v == null ? this.i.annotationInfo = null : this.i.annotationInfo = v.i; }, enumerable: false, configurable: true }); return IgcUserAnnotationInformationEventArgs; }()); export { IgcUserAnnotationInformationEventArgs };