igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
32 lines (31 loc) • 1.19 kB
JavaScript
import { __extends } from "tslib";
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
*/
var IgrDataAnnotationRectLayer = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrDataAnnotationRectLayer, _super);
function IgrDataAnnotationRectLayer(props) {
return _super.call(this, props) || this;
}
IgrDataAnnotationRectLayer.prototype.createImplementation = function () {
return new DataAnnotationRectLayer();
};
Object.defineProperty(IgrDataAnnotationRectLayer.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrDataAnnotationRectLayer;
}(IgrDataAnnotationPointLayer));
export { IgrDataAnnotationRectLayer };