igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
243 lines (242 loc) • 6.57 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 CalloutAnnotationDescription = /*@__PURE__*/ (() => {
class CalloutAnnotationDescription extends Description {
constructor() {
super();
this.aw = null;
this.ax = null;
this.au = null;
this.ar = null;
this.ao = null;
this.k = null;
this.aq = null;
this.ap = null;
this.av = null;
this.ak = null;
this.at = null;
this.as = null;
this.y = 0;
this.q = 0;
this.s = 0;
this.r = 0;
this.p = 0;
this.o = 0;
this.m = false;
this.x = 0;
this.v = 0;
this.w = 0;
this.an = null;
this.al = null;
this.am = null;
this.u = 0;
this.t = 0;
}
get_type() {
return "CalloutAnnotation";
}
get type() {
return this.get_type();
}
get xValueRef() {
return this.aw;
}
set xValueRef(a) {
this.aw = a;
this.j("XValueRef");
}
get yValueRef() {
return this.ax;
}
set yValueRef(a) {
this.ax = a;
this.j("YValueRef");
}
get text() {
return this.au;
}
set text(a) {
this.au = a;
this.j("Text");
}
get keyRef() {
return this.ar;
}
set keyRef(a) {
this.ar = a;
this.j("KeyRef");
}
get contentRef() {
return this.ao;
}
set contentRef(a) {
this.ao = a;
this.j("ContentRef");
}
get series() {
return this.k;
}
set series(a) {
this.k = a;
this.j("Series");
}
get itemColor() {
return this.aq;
}
set itemColor(a) {
this.aq = a;
this.j("ItemColor");
}
get formatLabelRef() {
return this.ap;
}
set formatLabelRef(a) {
this.ap = a;
this.j("FormatLabelRef");
}
get textColor() {
return this.av;
}
set textColor(a) {
this.av = a;
this.j("TextColor");
}
get background() {
return this.ak;
}
set background(a) {
this.ak = a;
this.j("Background");
}
get outline() {
return this.at;
}
set outline(a) {
this.at = a;
this.j("Outline");
}
get leaderBrush() {
return this.as;
}
set leaderBrush(a) {
this.as = a;
this.j("LeaderBrush");
}
get strokeThickness() {
return this.y;
}
set strokeThickness(a) {
this.y = a;
this.j("StrokeThickness");
}
get backgroundPaddingLeft() {
return this.q;
}
set backgroundPaddingLeft(a) {
this.q = a;
this.j("BackgroundPaddingLeft");
}
get backgroundPaddingTop() {
return this.s;
}
set backgroundPaddingTop(a) {
this.s = a;
this.j("BackgroundPaddingTop");
}
get backgroundPaddingRight() {
return this.r;
}
set backgroundPaddingRight(a) {
this.r = a;
this.j("BackgroundPaddingRight");
}
get backgroundPaddingBottom() {
return this.p;
}
set backgroundPaddingBottom(a) {
this.p = a;
this.j("BackgroundPaddingBottom");
}
get backgroundCornerRadius() {
return this.o;
}
set backgroundCornerRadius(a) {
this.o = a;
this.j("BackgroundCornerRadius");
}
get badgeVisible() {
return this.m;
}
set badgeVisible(a) {
this.m = a;
this.j("BadgeVisible");
}
get badgeWidth() {
return this.x;
}
set badgeWidth(a) {
this.x = a;
this.j("BadgeWidth");
}
get badgeHeight() {
return this.v;
}
set badgeHeight(a) {
this.v = a;
this.j("BadgeHeight");
}
get badgeThickness() {
return this.w;
}
set badgeThickness(a) {
this.w = a;
this.j("BadgeThickness");
}
get badgeOutline() {
return this.an;
}
set badgeOutline(a) {
this.an = a;
this.j("BadgeOutline");
}
get badgeBackground() {
return this.al;
}
set badgeBackground(a) {
this.al = a;
this.j("BadgeBackground");
}
get badgeImage() {
return this.am;
}
set badgeImage(a) {
this.am = a;
this.j("BadgeImage");
}
get badgeGap() {
return this.u;
}
set badgeGap(a) {
this.u = a;
this.j("BadgeGap");
}
get badgeCorner() {
return this.t;
}
set badgeCorner(a) {
this.t = a;
this.j("BadgeCorner");
}
}
CalloutAnnotationDescription.$t = markType(CalloutAnnotationDescription, 'CalloutAnnotationDescription', Description.$);
return CalloutAnnotationDescription;
})();