UNPKG

igniteui-react-charts

Version:

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

20 lines (19 loc) 860 B
import { IgrDataAnnotationPointLayer, IIgrDataAnnotationPointLayerProps } from "./igr-data-annotation-point-layer"; import { DataAnnotationLineLayer } from "./DataAnnotationLineLayer"; /** * Represents an annotation layer that renders lines at locations of x/y values mapped to these properties: * StartValueXMemberPath * StartValueYMemberPath * EndValueXMemberPath * EndValueYMemberPath */ export declare class IgrDataAnnotationLineLayer extends IgrDataAnnotationPointLayer<IIgrDataAnnotationLineLayerProps> { protected createImplementation(): DataAnnotationLineLayer; /** * @hidden */ get i(): DataAnnotationLineLayer; constructor(props: IIgrDataAnnotationLineLayerProps); } export interface IIgrDataAnnotationLineLayerProps extends IIgrDataAnnotationPointLayerProps { }