UNPKG

igniteui-webcomponents-charts

Version:

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

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