UNPKG

igniteui-react-charts

Version:

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

108 lines (107 loc) 3.68 kB
import { __extends } from "tslib"; import { IgrDataAnnotationShapeLayer } from "./igr-data-annotation-shape-layer"; import { DataAnnotationSliceLayer } from "./DataAnnotationSliceLayer"; /** * Represents an annotation layer that renders vertical or horizontal slices/lines at values mapped to AnnotationValueMemberPath property * horizontal slices/lines when TargetAxis is set to Y-axis * vertical slices/lines when TargetAxis is set to X-axis */ var IgrDataAnnotationSliceLayer = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrDataAnnotationSliceLayer, _super); function IgrDataAnnotationSliceLayer(props) { return _super.call(this, props) || this; } IgrDataAnnotationSliceLayer.prototype.createImplementation = function () { return new DataAnnotationSliceLayer(); }; Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationValueMemberPath", { /** * Gets or sets name of data column with values used to position annotations. */ get: function () { return this.i.ahq; }, set: function (v) { this.i.ahq = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationLabelMemberPath", { /** * Gets or sets mapping custom label on axis annotations. */ get: function () { return this.i.ahn; }, set: function (v) { this.i.ahn = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationBadgeEnabledMemberPath", { /** * Gets or sets a member path for visibility of the badge annotations on an axis. */ get: function () { return this.i.ahe; }, set: function (v) { this.i.ahe = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationBadgeBackgroundMemberPath", { /** * Gets or sets a member path for background of the badge annotations on an axis. */ get: function () { return this.i.ahb; }, set: function (v) { this.i.ahb = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationBadgeOutlineMemberPath", { /** * Gets or sets a member path for outline of the badge annotations on an axis. */ get: function () { return this.i.ahk; }, set: function (v) { this.i.ahk = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrDataAnnotationSliceLayer.prototype, "annotationBadgeImageMemberPath", { /** * Gets or sets a member path for image of the badge annotations on an axis. */ get: function () { return this.i.ahh; }, set: function (v) { this.i.ahh = v; }, enumerable: false, configurable: true }); return IgrDataAnnotationSliceLayer; }(IgrDataAnnotationShapeLayer)); export { IgrDataAnnotationSliceLayer };