igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
155 lines (154 loc) • 4.28 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let DataAnnotationItemDescription = /*@__PURE__*/ (() => {
class DataAnnotationItemDescription extends Description {
constructor() {
super();
this.y = 0;
this.ag = null;
this.ah = null;
this.ac = null;
this.ad = null;
this.ab = null;
this.aa = null;
this.o = 0;
this.p = 0;
this.m = 0;
this.n = 0;
this.k = 0;
this.l = 0;
this.ae = null;
this.af = null;
this.q = 0;
}
get_type() {
return "DataAnnotationItem";
}
get type() {
return this.get_type();
}
get dataIndex() {
return this.y;
}
set dataIndex(a) {
this.y = a;
this.j("DataIndex");
}
get startLabelX() {
return this.ag;
}
set startLabelX(a) {
this.ag = a;
this.j("StartLabelX");
}
get startLabelY() {
return this.ah;
}
set startLabelY(a) {
this.ah = a;
this.j("StartLabelY");
}
get endLabelX() {
return this.ac;
}
set endLabelX(a) {
this.ac = a;
this.j("EndLabelX");
}
get endLabelY() {
return this.ad;
}
set endLabelY(a) {
this.ad = a;
this.j("EndLabelY");
}
get centerLabelY() {
return this.ab;
}
set centerLabelY(a) {
this.ab = a;
this.j("CenterLabelY");
}
get centerLabelX() {
return this.aa;
}
set centerLabelX(a) {
this.aa = a;
this.j("CenterLabelX");
}
get shapeStartX() {
return this.o;
}
set shapeStartX(a) {
this.o = a;
this.j("ShapeStartX");
}
get shapeStartY() {
return this.p;
}
set shapeStartY(a) {
this.p = a;
this.j("ShapeStartY");
}
get shapeEndX() {
return this.m;
}
set shapeEndX(a) {
this.m = a;
this.j("ShapeEndX");
}
get shapeEndY() {
return this.n;
}
set shapeEndY(a) {
this.n = a;
this.j("ShapeEndY");
}
get shapeCenterX() {
return this.k;
}
set shapeCenterX(a) {
this.k = a;
this.j("ShapeCenterX");
}
get shapeCenterY() {
return this.l;
}
set shapeCenterY(a) {
this.l = a;
this.j("ShapeCenterY");
}
get shapeBrush() {
return this.ae;
}
set shapeBrush(a) {
this.ae = a;
this.j("ShapeBrush");
}
get shapeOutline() {
return this.af;
}
set shapeOutline(a) {
this.af = a;
this.j("ShapeOutline");
}
get shapeThickness() {
return this.q;
}
set shapeThickness(a) {
this.q = a;
this.j("ShapeThickness");
}
}
DataAnnotationItemDescription.$t = markType(DataAnnotationItemDescription, 'DataAnnotationItemDescription', Description.$);
return DataAnnotationItemDescription;
})();