igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
485 lines (484 loc) • 16.7 kB
JavaScript
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.et;
},
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.acv);
},
set: function (v) {
this.i.acv = 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.acw);
},
set: function (v) {
this.i.acw = 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.aa7;
},
set: function (v) {
this.i.aa7 = 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.aad;
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.aad = null : this.i.aad = 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.aak;
},
set: function (v) {
this.i.aak = 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.aag;
},
set: function (v) {
this.i.aag = 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.acz);
},
set: function (v) {
this.i.acz = 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.acx);
},
set: function (v) {
this.i.acx = 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.aan;
},
set: function (v) {
this.i.aan = +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.aaz;
},
set: function (v) {
this.i.aaz = +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.acy);
},
set: function (v) {
this.i.acy = 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.aap;
},
set: function (v) {
this.i.aap = +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.aar;
},
set: function (v) {
this.i.aar = +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.aaq;
},
set: function (v) {
this.i.aaq = +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.aao;
},
set: function (v) {
this.i.aao = +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.aav;
},
set: function (v) {
this.i.aav = +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.aax;
},
set: function (v) {
this.i.aax = +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.aaw;
},
set: function (v) {
this.i.aaw = +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.aau;
},
set: function (v) {
this.i.aau = +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.aas;
},
set: function (v) {
this.i.aas = +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.ac2);
},
set: function (v) {
this.i.ac2 = 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.ac0);
},
set: function (v) {
this.i.ac0 = 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.aat;
},
set: function (v) {
this.i.aat = +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.aa0;
},
set: function (v) {
this.i.aa0 = +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.ac1);
},
set: function (v) {
this.i.ac1 = 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.aay;
},
set: function (v) {
this.i.aay = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrCrosshairLayer.prototype, "verticalLineVisibility", {
/**
* Gets or sets whether to display the vertical line.
*/
get: function () {
return this.i.ac8;
},
set: function (v) {
this.i.ac8 = 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.ac7;
},
set: function (v) {
this.i.ac7 = 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.aaj;
},
set: function (v) {
this.i.aaj = 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.aai;
},
set: function (v) {
this.i.aai = 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.aah;
},
set: function (v) {
this.i.aah = 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 };