igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 1.02 kB
JavaScript
import { __extends } from "tslib";
import { IgrUserShapeAnnotation } from "./igr-user-shape-annotation";
import { UserSliceAnnotation as UserSliceAnnotation_internal } from "./UserSliceAnnotation";
/**
* Represents an user annotation for rendering data slice annotation
*/
var IgrUserSliceAnnotation = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrUserSliceAnnotation, _super);
function IgrUserSliceAnnotation() {
return _super.call(this) || this;
}
IgrUserSliceAnnotation.prototype.createImplementation = function () {
return new UserSliceAnnotation_internal();
};
Object.defineProperty(IgrUserSliceAnnotation.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrUserSliceAnnotation;
}(IgrUserShapeAnnotation));
export { IgrUserSliceAnnotation };