UNPKG

igniteui-angular-charts

Version:

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

28 lines (27 loc) 1.05 kB
import { __extends } from "tslib"; import { IgxUserShapeAnnotation } from "./igx-user-shape-annotation"; import { UserSliceAnnotation as UserSliceAnnotation_internal } from "./UserSliceAnnotation"; /** * Represents an user annotation for rendering data slice annotation */ var IgxUserSliceAnnotation = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgxUserSliceAnnotation, _super); function IgxUserSliceAnnotation() { return _super.call(this) || this; } IgxUserSliceAnnotation.prototype.createImplementation = function () { return new UserSliceAnnotation_internal(); }; Object.defineProperty(IgxUserSliceAnnotation.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgxUserSliceAnnotation; }(IgxUserShapeAnnotation)); export { IgxUserSliceAnnotation };