UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

59 lines (58 loc) 2.01 kB
import { RenderRequestedEventArgs as RenderRequestedEventArgs_internal } from "./RenderRequestedEventArgs"; import { ensureBool } from "igniteui-angular-core"; /** * EventArgs class for RenderRequested events. * * Use the `RenderRequested` class for RenderRequested events. */ var IgxRenderRequestedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxRenderRequestedEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgxRenderRequestedEventArgs.prototype.createImplementation = function () { return new RenderRequestedEventArgs_internal(); }; Object.defineProperty(IgxRenderRequestedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxRenderRequestedEventArgs.prototype.onImplementationCreated = function () { }; IgxRenderRequestedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxRenderRequestedEventArgs.prototype, "animate", { /** * True if animation is requested. * * Use the `Animate` property true if the animation is requested. * * ```ts * e.animation = true; * ``` */ get: function () { return this.i.animate; }, set: function (v) { this.i.animate = ensureBool(v); }, enumerable: false, configurable: true }); return IgxRenderRequestedEventArgs; }()); export { IgxRenderRequestedEventArgs };