igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
20 lines (19 loc) • 583 B
JavaScript
import { IgcUserShapeAnnotation } from "./igc-user-shape-annotation";
import { UserSliceAnnotation as UserSliceAnnotation_internal } from "./UserSliceAnnotation";
/**
* Represents an user annotation for rendering data slice annotation
*/
export class IgcUserSliceAnnotation extends IgcUserShapeAnnotation {
createImplementation() {
return new UserSliceAnnotation_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor() {
super();
}
}