UNPKG

igniteui-react-charts

Version:

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

485 lines (484 loc) 16.7 kB
import { __extends } from "tslib"; import { IgrSeries } from "./igr-series"; import { Visibility_$type } from "igniteui-react-core"; import { IgrAnnotationLayer } from "./igr-annotation-layer"; import { CrosshairLayer } from "./CrosshairLayer"; import { ensureBool, brushToString, stringToBrush, ensureEnum } from "igniteui-react-core"; /** * Represents an annotation layer that displays crosshair lines that cross through the closest value of the target series under the cursor. */ var IgrCrosshairLayer = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrCrosshairLayer, _super); function IgrCrosshairLayer(props) { return _super.call(this, props) || this; } IgrCrosshairLayer.prototype.createImplementation = function () { return new CrosshairLayer(); }; Object.defineProperty(IgrCrosshairLayer.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "isAnnotationHoverLayer", { /** * Gets whether the series is an annotation layer displayed only when hovering over the chart. */ get: function () { return this.i.eu; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "isAnnotationCrosshairLayer", { /** * Gets whether the series is an crosshair annotation layer. */ get: function () { return this.i.er; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "horizontalLineStroke", { /** * Gets or sets the color to use for the horizontal line. Leave null for an automatic value. */ get: function () { return brushToString(this.i.add); }, set: function (v) { this.i.add = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "verticalLineStroke", { /** * Gets or sets the color to use for vertical line. Leave null for an automatic value. */ get: function () { return brushToString(this.i.ade); }, set: function (v) { this.i.ade = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "targetSeriesName", { /** * Gets or sets the name of the series to target this annotation to. If null, this annotation targets all series simultaneously. */ get: function () { return this.i.abp; }, set: function (v) { this.i.abp = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "targetSeries", { /** * Gets or sets the series to target this annotation to. If null, this annotation targets all series simultaneously. */ get: function () { var r = this.i.aav; if (r == null) { return null; } if (!r.externalObject) { var e = IgrSeries._createFromInternal(r); if (e) { e._implementation = r; } r.externalObject = e; } return r.externalObject; }, set: function (v) { if (v != null && this._stylingContainer && v._styling) v._styling(this._stylingContainer, this, this); v == null ? this.i.aav = null : this.i.aav = v.i; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "useInterpolation", { /** * Gets or sets whether to use value interpolation when drawing a line through the best value for the cursor position. */ get: function () { return this.i.aa2; }, set: function (v) { this.i.aa2 = ensureBool(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "isAxisAnnotationEnabled", { /** * Gets or sets whether to draw annotations over the axes where the crosshair meets with them. */ get: function () { return this.i.aay; }, set: function (v) { this.i.aay = ensureBool(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationTextColor", { /** * Gets or sets the color to use for the x axis annotation text. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adh); }, set: function (v) { this.i.adh = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationBackground", { /** * Gets or sets the color to use for the x axis annotation backing. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adf); }, set: function (v) { this.i.adf = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationBackgroundCornerRadius", { /** * Gets or sets the corner radius to use for the x axis annotation backing. Leave unset for an automatic value. */ get: function () { return this.i.aa5; }, set: function (v) { this.i.aa5 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationInterpolatedValuePrecision", { /** * Gets or sets the precision to use displaying values for interpolated crosshair positions. */ get: function () { return this.i.abh; }, set: function (v) { this.i.abh = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationOutline", { /** * Gets or sets the color to use for the x axis annotation outline. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adg); }, set: function (v) { this.i.adg = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationPaddingLeft", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.aa7; }, set: function (v) { this.i.aa7 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationPaddingTop", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.aa9; }, set: function (v) { this.i.aa9 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationPaddingRight", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.aa8; }, set: function (v) { this.i.aa8 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationPaddingBottom", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.aa6; }, set: function (v) { this.i.aa6 = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationPaddingLeft", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.abd; }, set: function (v) { this.i.abd = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationPaddingTop", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.abf; }, set: function (v) { this.i.abf = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationPaddingRight", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.abe; }, set: function (v) { this.i.abe = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationPaddingBottom", { /** * Gets or sets the padding to use withing the axis annotation callout. Leaving this NaN will use an automatic value related to the axis label margins. */ get: function () { return this.i.abc; }, set: function (v) { this.i.abc = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "xAxisAnnotationStrokeThickness", { /** * Gets or sets the stroke thickness for the x axis annotation backing. Leave unset for an automatic value. */ get: function () { return this.i.aba; }, set: function (v) { this.i.aba = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationTextColor", { /** * Gets or sets the color to use for the y axis annotation text. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adk); }, set: function (v) { this.i.adk = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationBackground", { /** * Gets or sets the color to use for the y axis annotation backing. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adi); }, set: function (v) { this.i.adi = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationBackgroundCornerRadius", { /** * Gets or sets the corner radius to use for the y axis annotation backing. Leave unset for an automatic value. */ get: function () { return this.i.abb; }, set: function (v) { this.i.abb = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationInterpolatedValuePrecision", { /** * Gets or sets the precision to use displaying values for interpolated crosshair positions. */ get: function () { return this.i.abi; }, set: function (v) { this.i.abi = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationOutline", { /** * Gets or sets the color to use for the y axis annotation outline. Leave unset for an automatic value. */ get: function () { return brushToString(this.i.adj); }, set: function (v) { this.i.adj = stringToBrush(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "yAxisAnnotationStrokeThickness", { /** * Gets or sets the stroke thickness for the y axis annotation backing. Leave unset for an automatic value. */ get: function () { return this.i.abg; }, set: function (v) { this.i.abg = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "verticalLineVisibility", { /** * Gets or sets whether to display the vertical line. */ get: function () { return this.i.adq; }, set: function (v) { this.i.adq = ensureEnum(Visibility_$type, v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "horizontalLineVisibility", { /** * Gets or sets whether to display the horizontal line. */ get: function () { return this.i.adp; }, set: function (v) { this.i.adp = ensureEnum(Visibility_$type, v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "skipUnknownValues", { /** * Gets or sets whether to skip unknown values when searching for series values. */ get: function () { return this.i.aa1; }, set: function (v) { this.i.aa1 = ensureBool(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "skipAxisAnnotationOnZeroValueFragments", { /** * Gets or sets whether axis annotation are skipped for zero-value fragments in a given position. */ get: function () { return this.i.aa0; }, set: function (v) { this.i.aa0 = ensureBool(v); }, enumerable: false, configurable: true }); Object.defineProperty(IgrCrosshairLayer.prototype, "skipAxisAnnotationOnInvalidData", { /** * Gets or sets whether axis annotation are skipped for invalid data in a given position. */ get: function () { return this.i.aaz; }, set: function (v) { this.i.aaz = ensureBool(v); }, enumerable: false, configurable: true }); IgrCrosshairLayer.prototype.findByName = function (name) { var baseResult = _super.prototype.findByName.call(this, name); if (baseResult) { return baseResult; } if (this.targetSeries && this.targetSeries.name && this.targetSeries.name == name) { return this.targetSeries; } return null; }; IgrCrosshairLayer.prototype._styling = function (container, component, parent) { _super.prototype._styling.call(this, container, component, parent); this._inStyling = true; if (this.targetSeries && this.targetSeries._styling) { this.targetSeries._styling(container, component, this); } this._inStyling = false; }; return IgrCrosshairLayer; }(IgrAnnotationLayer)); export { IgrCrosshairLayer };