igniteui-react-core
Version:
Ignite UI React Core.
96 lines (95 loc) • 3.15 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 { DataAnnotationShapeLayerDescription } from "./DataAnnotationShapeLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DataAnnotationRangeLayerDescription = /*@__PURE__*/ (() => {
class DataAnnotationRangeLayerDescription extends DataAnnotationShapeLayerDescription {
get_type() {
return "DataAnnotationRangeLayer";
}
constructor() {
super();
this.jv = null;
this.jt = null;
this.ju = null;
this.js = null;
this.jq = null;
this.jr = null;
this.jp = null;
this.jn = null;
this.jo = null;
}
get startLabelTextColor() {
return this.jv;
}
set startLabelTextColor(a) {
this.jv = a;
this.g("StartLabelTextColor");
}
get startLabelBackground() {
return this.jt;
}
set startLabelBackground(a) {
this.jt = a;
this.g("StartLabelBackground");
}
get startLabelBorderColor() {
return this.ju;
}
set startLabelBorderColor(a) {
this.ju = a;
this.g("StartLabelBorderColor");
}
get endLabelTextColor() {
return this.js;
}
set endLabelTextColor(a) {
this.js = a;
this.g("EndLabelTextColor");
}
get endLabelBackground() {
return this.jq;
}
set endLabelBackground(a) {
this.jq = a;
this.g("EndLabelBackground");
}
get endLabelBorderColor() {
return this.jr;
}
set endLabelBorderColor(a) {
this.jr = a;
this.g("EndLabelBorderColor");
}
get centerLabelTextColor() {
return this.jp;
}
set centerLabelTextColor(a) {
this.jp = a;
this.g("CenterLabelTextColor");
}
get centerLabelBackground() {
return this.jn;
}
set centerLabelBackground(a) {
this.jn = a;
this.g("CenterLabelBackground");
}
get centerLabelBorderColor() {
return this.jo;
}
set centerLabelBorderColor(a) {
this.jo = a;
this.g("CenterLabelBorderColor");
}
}
DataAnnotationRangeLayerDescription.$t = /*@__PURE__*/ markType(DataAnnotationRangeLayerDescription, 'DataAnnotationRangeLayerDescription', DataAnnotationShapeLayerDescription.$);
return DataAnnotationRangeLayerDescription;
})();