igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
120 lines (119 loc) • 4.07 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 { DataAnnotationRangeLayerDescription } from "./DataAnnotationRangeLayerDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let DataAnnotationStripLayerDescription = /*@__PURE__*/ (() => {
class DataAnnotationStripLayerDescription extends DataAnnotationRangeLayerDescription {
constructor() {
super();
this.k3 = null;
this.k2 = null;
this.k1 = null;
this.k0 = null;
this.kz = null;
this.ky = null;
this.kx = null;
this.kw = null;
this.kt = null;
this.ks = null;
this.kv = null;
this.ku = null;
}
get_type() {
return "DataAnnotationStripLayer";
}
get startValueMemberPath() {
return this.k3;
}
set startValueMemberPath(a) {
this.k3 = a;
this.j("StartValueMemberPath");
}
get startLabelMemberPath() {
return this.k2;
}
set startLabelMemberPath(a) {
this.k2 = a;
this.j("StartLabelMemberPath");
}
get startLabelDisplayMode() {
return this.k1;
}
set startLabelDisplayMode(a) {
this.k1 = a;
this.j("StartLabelDisplayMode");
}
get endValueMemberPath() {
return this.k0;
}
set endValueMemberPath(a) {
this.k0 = a;
this.j("EndValueMemberPath");
}
get endLabelMemberPath() {
return this.kz;
}
set endLabelMemberPath(a) {
this.kz = a;
this.j("EndLabelMemberPath");
}
get endLabelDisplayMode() {
return this.ky;
}
set endLabelDisplayMode(a) {
this.ky = a;
this.j("EndLabelDisplayMode");
}
get centerLabelMemberPath() {
return this.kx;
}
set centerLabelMemberPath(a) {
this.kx = a;
this.j("CenterLabelMemberPath");
}
get centerLabelDisplayMode() {
return this.kw;
}
set centerLabelDisplayMode(a) {
this.kw = a;
this.j("CenterLabelDisplayMode");
}
get annotationBadgeEnabledMemberPath() {
return this.kt;
}
set annotationBadgeEnabledMemberPath(a) {
this.kt = a;
this.j("AnnotationBadgeEnabledMemberPath");
}
get annotationBadgeBackgroundMemberPath() {
return this.ks;
}
set annotationBadgeBackgroundMemberPath(a) {
this.ks = a;
this.j("AnnotationBadgeBackgroundMemberPath");
}
get annotationBadgeOutlineMemberPath() {
return this.kv;
}
set annotationBadgeOutlineMemberPath(a) {
this.kv = a;
this.j("AnnotationBadgeOutlineMemberPath");
}
get annotationBadgeImageMemberPath() {
return this.ku;
}
set annotationBadgeImageMemberPath(a) {
this.ku = a;
this.j("AnnotationBadgeImageMemberPath");
}
}
DataAnnotationStripLayerDescription.$t = markType(DataAnnotationStripLayerDescription, 'DataAnnotationStripLayerDescription', DataAnnotationRangeLayerDescription.$);
return DataAnnotationStripLayerDescription;
})();