igniteui-react-core
Version:
Ignite UI React Core.
216 lines (215 loc) • 6.57 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { AnnotationLayerDescription } from "./AnnotationLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DataAnnotationAxisLayerDescription = /*@__PURE__*/ (() => {
class DataAnnotationAxisLayerDescription extends AnnotationLayerDescription {
get_type() {
return "DataAnnotationAxisLayer";
}
constructor() {
super();
this.hd = null;
this.gh = false;
this.he = null;
this.hf = null;
this.gv = 0;
this.gi = false;
this.g9 = null;
this.go = 0;
this.ha = null;
this.gn = 0;
this.gf = false;
this.gg = false;
this.hb = null;
this.hc = null;
this.gp = 0;
this.gr = 0;
this.gs = 0;
this.gt = 0;
this.gu = 0;
this.gq = 0;
this.g5 = 0;
this.g6 = 0;
this.hg = null;
this.hh = null;
}
get annotationLabelDisplayMode() {
return this.hd;
}
set annotationLabelDisplayMode(a) {
this.hd = a;
this.g("AnnotationLabelDisplayMode");
}
get annotationLabelVisible() {
return this.gh;
}
set annotationLabelVisible(a) {
this.gh = a;
this.g("AnnotationLabelVisible");
}
get annotationTextColor() {
return this.he;
}
set annotationTextColor(a) {
this.he = a;
this.g("AnnotationTextColor");
}
get annotationTextColorMode() {
return this.hf;
}
set annotationTextColorMode(a) {
this.hf = a;
this.g("AnnotationTextColorMode");
}
get annotationTextColorShift() {
return this.gv;
}
set annotationTextColorShift(a) {
this.gv = a;
this.g("AnnotationTextColorShift");
}
get annotationTextColorMatchLayer() {
return this.gi;
}
set annotationTextColorMatchLayer(a) {
this.gi = a;
this.g("AnnotationTextColorMatchLayer");
}
get annotationBackground() {
return this.g9;
}
set annotationBackground(a) {
this.g9 = a;
this.g("AnnotationBackground");
}
get annotationBorderRadius() {
return this.go;
}
set annotationBorderRadius(a) {
this.go = a;
this.g("AnnotationBorderRadius");
}
get annotationBackgroundMode() {
return this.ha;
}
set annotationBackgroundMode(a) {
this.ha = a;
this.g("AnnotationBackgroundMode");
}
get annotationBackgroundShift() {
return this.gn;
}
set annotationBackgroundShift(a) {
this.gn = a;
this.g("AnnotationBackgroundShift");
}
get annotationBackgroundMatchLayer() {
return this.gf;
}
set annotationBackgroundMatchLayer(a) {
this.gf = a;
this.g("AnnotationBackgroundMatchLayer");
}
get annotationBorderMatchLayer() {
return this.gg;
}
set annotationBorderMatchLayer(a) {
this.gg = a;
this.g("AnnotationBorderMatchLayer");
}
get annotationBorderColor() {
return this.hb;
}
set annotationBorderColor(a) {
this.hb = a;
this.g("AnnotationBorderColor");
}
get annotationBorderMode() {
return this.hc;
}
set annotationBorderMode(a) {
this.hc = a;
this.g("AnnotationBorderMode");
}
get annotationBorderShift() {
return this.gp;
}
set annotationBorderShift(a) {
this.gp = a;
this.g("AnnotationBorderShift");
}
get annotationPaddingBottom() {
return this.gr;
}
set annotationPaddingBottom(a) {
this.gr = a;
this.g("AnnotationPaddingBottom");
}
get annotationPaddingLeft() {
return this.gs;
}
set annotationPaddingLeft(a) {
this.gs = a;
this.g("AnnotationPaddingLeft");
}
get annotationPaddingRight() {
return this.gt;
}
set annotationPaddingRight(a) {
this.gt = a;
this.g("AnnotationPaddingRight");
}
get annotationPaddingTop() {
return this.gu;
}
set annotationPaddingTop(a) {
this.gu = a;
this.g("AnnotationPaddingTop");
}
get annotationBorderThickness() {
return this.gq;
}
set annotationBorderThickness(a) {
this.gq = a;
this.g("AnnotationBorderThickness");
}
get annotationValueMaxPrecision() {
return this.g5;
}
set annotationValueMaxPrecision(a) {
this.g5 = a;
this.g("AnnotationValueMaxPrecision");
}
get annotationValueMinPrecision() {
return this.g6;
}
set annotationValueMinPrecision(a) {
this.g6 = a;
this.g("AnnotationValueMinPrecision");
}
get targetAxisRef() {
return this.hg;
}
set targetAxisRef(a) {
this.hg = a;
this.g("TargetAxisRef");
}
get targetMode() {
return this.hh;
}
set targetMode(a) {
this.hh = a;
this.g("TargetMode");
}
}
DataAnnotationAxisLayerDescription.$t = /*@__PURE__*/ markType(DataAnnotationAxisLayerDescription, 'DataAnnotationAxisLayerDescription', AnnotationLayerDescription.$);
return DataAnnotationAxisLayerDescription;
})();