UNPKG

igniteui-react-charts

Version:

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

290 lines (289 loc) 8.77 kB
import { DataAnnotationDisplayMode_$type } from "./DataAnnotationDisplayMode"; import { AnnotationAppearanceMode_$type } from "./AnnotationAppearanceMode"; import { IgrAxis } from "./igr-axis"; import { DataAnnotationTargetMode_$type } from "./DataAnnotationTargetMode"; import { IgrAnnotationLayer } from "./igr-annotation-layer"; import { ensureEnum, ensureBool, brushToString, stringToBrush } from "igniteui-react-core"; import { Thickness } from "igniteui-react-core"; /** * Represents a base annotation layer that displays annotations over an axis. */ export class IgrDataAnnotationAxisLayer extends IgrAnnotationLayer { /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); this._targetAxisName = null; } /** * Gets or sets display mode of label on axis annotation. */ get annotationLabelDisplayMode() { return this.i.aak; } set annotationLabelDisplayMode(v) { this.i.aak = ensureEnum(DataAnnotationDisplayMode_$type, v); } /** * Gets or sets whether to show all annotations over target axis */ get annotationLabelVisible() { return this.i.aap; } set annotationLabelVisible(v) { this.i.aap = ensureBool(v); } /** * Gets or sets the text color used in the axis annotation. */ get annotationTextColor() { return brushToString(this.i.ab8); } set annotationTextColor(v) { this.i.ab8 = stringToBrush(v); } /** * Gets or sets the mode used for shifting the text color in axis annotation. */ get annotationTextColorMode() { return this.i.aai; } set annotationTextColorMode(v) { this.i.aai = ensureEnum(AnnotationAppearanceMode_$type, v); } /** * Gets or sets the percentage used to shift AnnotationTextColor. Value must range between -1.0 to 1.0, where 0 means no color shift. */ get annotationTextColorShift() { return this.i.aaw; } set annotationTextColorShift(v) { this.i.aaw = +v; } /** * Gets or sets whether the annotation text color matches brush of the layer */ get annotationTextColorMatchLayer() { return this.i.aaq; } set annotationTextColorMatchLayer(v) { this.i.aaq = ensureBool(v); } /** * Gets or sets the color used for backing of the axis annotation. */ get annotationBackground() { return brushToString(this.i.ab6); } set annotationBackground(v) { this.i.ab6 = stringToBrush(v); } /** * Gets or sets the border radius used for displaying the axis annotation. */ get annotationBorderRadius() { return this.i.aat; } set annotationBorderRadius(v) { this.i.aat = +v; } /** * Gets or sets the mode used for shifting the background of axis annotation. */ get annotationBackgroundMode() { return this.i.aag; } set annotationBackgroundMode(v) { this.i.aag = ensureEnum(AnnotationAppearanceMode_$type, v); } /** * Gets or sets the percentage used to shift AnnotationBackground. Value must range between -1.0 to 1.0, where 0 means no color shift. */ get annotationBackgroundShift() { return this.i.aas; } set annotationBackgroundShift(v) { this.i.aas = +v; } /** * Gets or sets whether the annotation background matches brush of the layer */ get annotationBackgroundMatchLayer() { return this.i.aan; } set annotationBackgroundMatchLayer(v) { this.i.aan = ensureBool(v); } /** * Gets or sets whether the annotation border matches outline of the layer (if it has a fill visual) otherwise brush of the layer */ get annotationBorderMatchLayer() { return this.i.aao; } set annotationBorderMatchLayer(v) { this.i.aao = ensureBool(v); } /** * Gets or sets the color used for border color of the axis annotation. */ get annotationBorderColor() { return brushToString(this.i.ab7); } set annotationBorderColor(v) { this.i.ab7 = stringToBrush(v); } /** * Gets or sets the mode used for shifting border color of the axis annotation. */ get annotationBorderMode() { return this.i.aah; } set annotationBorderMode(v) { this.i.aah = ensureEnum(AnnotationAppearanceMode_$type, v); } /** * Gets or sets the percentage amount used to shift AnnotationBorderColor. Value must range between -1.0 to 1.0, where 0 means no color shift. */ get annotationBorderShift() { return this.i.aau; } set annotationBorderShift(v) { this.i.aau = +v; } get annotationPaddingBottom() { return this.i.ab9 ? this.i.ab9.bottom : NaN; } set annotationPaddingBottom(v) { this.ensureAnnotationPadding(); this.i.ab9.bottom = +v; this.i.ab9 = this.i.ab9; } get annotationPaddingLeft() { return this.i.ab9 ? this.i.ab9.left : NaN; } set annotationPaddingLeft(v) { this.ensureAnnotationPadding(); this.i.ab9.left = +v; this.i.ab9 = this.i.ab9; } get annotationPaddingRight() { return this.i.ab9 ? this.i.ab9.right : NaN; } set annotationPaddingRight(v) { this.ensureAnnotationPadding(); this.i.ab9.right = +v; this.i.ab9 = this.i.ab9; } get annotationPaddingTop() { return this.i.ab9 ? this.i.ab9.top : NaN; } set annotationPaddingTop(v) { this.ensureAnnotationPadding(); this.i.ab9.top = +v; this.i.ab9 = this.i.ab9; } ensureAnnotationPadding() { if (this.i.ab9) { return; } this.i.ab9 = new Thickness(2); } /** * Gets or sets border thickness of the axis annotations. */ get annotationBorderThickness() { return this.i.aav; } set annotationBorderThickness(v) { this.i.aav = +v; } /** * Gets or sets maximum precision for displaying values on axis annotation. */ get annotationValueMaxPrecision() { return this.i.aax; } set annotationValueMaxPrecision(v) { this.i.aax = +v; } /** * Gets or sets minimum precision for displaying values on axis annotation. */ get annotationValueMinPrecision() { return this.i.aay; } set annotationValueMinPrecision(v) { this.i.aay = +v; } /** * Gets or sets the target axis for this annotation. If null, this annotation will use TargetMode to determine target axis. */ get targetAxis() { const r = this.i.aaj; if (r == null) { return null; } if (!r.externalObject) { let e = IgrAxis._createFromInternal(r); if (e) { e._implementation = r; } r.externalObject = e; } return r.externalObject; } set targetAxis(v) { if (v != null && this._stylingContainer && v._styling) v._styling(this._stylingContainer, this, this); v == null ? this.i.aaj = null : this.i.aaj = v.i; } /** * Gets or sets the name to use to resolve targetAxis from markup. */ get targetAxisName() { return this._targetAxisName; } set targetAxisName(v) { this._targetAxisName = v; } /** * Gets or sets the mode for targeting axes present in the chart. Defaults to targeting all category-axes present in the chart */ get targetMode() { return this.i.aal; } set targetMode(v) { this.i.aal = ensureEnum(DataAnnotationTargetMode_$type, v); } bindAxes(axes) { super.bindAxes(axes); for (let i = 0; i < axes.length; i++) { if (this.targetAxisName && this.targetAxisName.length > 0 && axes[i].name == this.targetAxisName) { this.targetAxis = axes[i]; } } } findByName(name) { var baseResult = super.findByName(name); if (baseResult) { return baseResult; } if (this.targetAxis && this.targetAxis.name && this.targetAxis.name == name) { return this.targetAxis; } return null; } _styling(container, component, parent) { super._styling(container, component, parent); this._inStyling = true; if (this.targetAxis && this.targetAxis._styling) { this.targetAxis._styling(container, component, this); } this._inStyling = false; } }