igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
171 lines (170 loc) • 4.64 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 DataAnnotationInfoDescription = /*@__PURE__*/ (() => {
class DataAnnotationInfoDescription extends Description {
constructor() {
super();
this.m = 0;
this.p = 0;
this.o = 0;
this.r = 0;
this.n = 0;
this.q = 0;
this.j = 0;
this.k = 0;
this.l = 0;
this.af = null;
this.ag = null;
this.ai = null;
this.aj = null;
this.ah = null;
this.ad = null;
this.ae = null;
this.h = 0;
this.i = 0;
}
get_type() {
return "DataAnnotationInfo";
}
get type() {
return this.get_type();
}
get xAxisPixel() {
return this.m;
}
set xAxisPixel(a) {
this.m = a;
this.g("XAxisPixel");
}
get yAxisPixel() {
return this.p;
}
set yAxisPixel(a) {
this.p = a;
this.g("YAxisPixel");
}
get xAxisWindow() {
return this.o;
}
set xAxisWindow(a) {
this.o = a;
this.g("XAxisWindow");
}
get yAxisWindow() {
return this.r;
}
set yAxisWindow(a) {
this.r = a;
this.g("YAxisWindow");
}
get xAxisValue() {
return this.n;
}
set xAxisValue(a) {
this.n = a;
this.g("XAxisValue");
}
get yAxisValue() {
return this.q;
}
set yAxisValue(a) {
this.q = a;
this.g("YAxisValue");
}
get dataIndex() {
return this.j;
}
set dataIndex(a) {
this.j = a;
this.g("DataIndex");
}
get dataValueX() {
return this.k;
}
set dataValueX(a) {
this.k = a;
this.g("DataValueX");
}
get dataValueY() {
return this.l;
}
set dataValueY(a) {
this.l = a;
this.g("DataValueY");
}
get dataLabelX() {
return this.af;
}
set dataLabelX(a) {
this.af = a;
this.g("DataLabelX");
}
get dataLabelY() {
return this.ag;
}
set dataLabelY(a) {
this.ag = a;
this.g("DataLabelY");
}
get xAxisLabel() {
return this.ai;
}
set xAxisLabel(a) {
this.ai = a;
this.g("XAxisLabel");
}
get yAxisLabel() {
return this.aj;
}
set yAxisLabel(a) {
this.aj = a;
this.g("YAxisLabel");
}
get textColor() {
return this.ah;
}
set textColor(a) {
this.ah = a;
this.g("TextColor");
}
get background() {
return this.ad;
}
set background(a) {
this.ad = a;
this.g("Background");
}
get borderColor() {
return this.ae;
}
set borderColor(a) {
this.ae = a;
this.g("BorderColor");
}
get borderRadius() {
return this.h;
}
set borderRadius(a) {
this.h = a;
this.g("BorderRadius");
}
get borderThickness() {
return this.i;
}
set borderThickness(a) {
this.i = a;
this.g("BorderThickness");
}
}
DataAnnotationInfoDescription.$t = markType(DataAnnotationInfoDescription, 'DataAnnotationInfoDescription', Description.$);
return DataAnnotationInfoDescription;
})();