igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
96 lines (95 loc) • 3.23 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 {
constructor() {
super();
this.ki = null;
this.kg = null;
this.kh = null;
this.kf = null;
this.kd = null;
this.ke = null;
this.kc = null;
this.ka = null;
this.kb = null;
}
get_type() {
return "DataAnnotationRangeLayer";
}
get startLabelTextColor() {
return this.ki;
}
set startLabelTextColor(a) {
this.ki = a;
this.j("StartLabelTextColor");
}
get startLabelBackground() {
return this.kg;
}
set startLabelBackground(a) {
this.kg = a;
this.j("StartLabelBackground");
}
get startLabelBorderColor() {
return this.kh;
}
set startLabelBorderColor(a) {
this.kh = a;
this.j("StartLabelBorderColor");
}
get endLabelTextColor() {
return this.kf;
}
set endLabelTextColor(a) {
this.kf = a;
this.j("EndLabelTextColor");
}
get endLabelBackground() {
return this.kd;
}
set endLabelBackground(a) {
this.kd = a;
this.j("EndLabelBackground");
}
get endLabelBorderColor() {
return this.ke;
}
set endLabelBorderColor(a) {
this.ke = a;
this.j("EndLabelBorderColor");
}
get centerLabelTextColor() {
return this.kc;
}
set centerLabelTextColor(a) {
this.kc = a;
this.j("CenterLabelTextColor");
}
get centerLabelBackground() {
return this.ka;
}
set centerLabelBackground(a) {
this.ka = a;
this.j("CenterLabelBackground");
}
get centerLabelBorderColor() {
return this.kb;
}
set centerLabelBorderColor(a) {
this.kb = a;
this.j("CenterLabelBorderColor");
}
}
DataAnnotationRangeLayerDescription.$t = markType(DataAnnotationRangeLayerDescription, 'DataAnnotationRangeLayerDescription', DataAnnotationShapeLayerDescription.$);
return DataAnnotationRangeLayerDescription;
})();