igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
20 lines (19 loc) • 865 B
TypeScript
import { IgrDataAnnotationPointLayer, IIgrDataAnnotationPointLayerProps } 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 declare class IgrDataAnnotationRectLayer extends IgrDataAnnotationPointLayer<IIgrDataAnnotationRectLayerProps> {
protected createImplementation(): DataAnnotationRectLayer;
/**
* @hidden
*/
get i(): DataAnnotationRectLayer;
constructor(props: IIgrDataAnnotationRectLayerProps);
}
export interface IIgrDataAnnotationRectLayerProps extends IIgrDataAnnotationPointLayerProps {
}