UNPKG

igniteui-react-charts

Version:

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

24 lines (23 loc) 724 B
import { IgrDataAnnotationPointLayer } from "./igr-data-annotation-point-layer"; import { DataAnnotationRectLayer } from "./DataAnnotationRectLayer"; /** * Represents an annotation layer that renders rectangles at locations of x/y values mapped to these properties: * StartValueXMemberPath * StartValueYMemberPath * EndValueXMemberPath * EndValueYMemberPath */ export class IgrDataAnnotationRectLayer extends IgrDataAnnotationPointLayer { createImplementation() { return new DataAnnotationRectLayer(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } }