UNPKG

igniteui-react-charts

Version:

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

32 lines (31 loc) 1.19 kB
import { __extends } from "tslib"; 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 */ var IgrDataAnnotationLineLayer = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrDataAnnotationLineLayer, _super); function IgrDataAnnotationLineLayer(props) { return _super.call(this, props) || this; } IgrDataAnnotationLineLayer.prototype.createImplementation = function () { return new DataAnnotationLineLayer(); }; Object.defineProperty(IgrDataAnnotationLineLayer.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgrDataAnnotationLineLayer; }(IgrDataAnnotationPointLayer)); export { IgrDataAnnotationLineLayer };