igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
24 lines (23 loc) • 719 B
JavaScript
import { IgrDataAnnotationPointLayer } 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 class IgrDataAnnotationLineLayer extends IgrDataAnnotationPointLayer {
createImplementation() {
return new DataAnnotationLineLayer();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
}