UNPKG

igniteui-angular-charts

Version:

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

20 lines (19 loc) 602 B
import { IgxUserShapeAnnotation } from "./igx-user-shape-annotation"; import { UserSliceAnnotation as UserSliceAnnotation_internal } from "./UserSliceAnnotation"; /** * Represents an user annotation for rendering data slice annotation */ export class IgxUserSliceAnnotation extends IgxUserShapeAnnotation { createImplementation() { return new UserSliceAnnotation_internal(); } /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } }