igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
136 lines (135 loc) • 4.38 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 { SeriesDescription } from "./SeriesDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ValueOverlayDescription = /*@__PURE__*/ (() => {
class ValueOverlayDescription extends SeriesDescription {
constructor() {
super();
this.dr = null;
this.dc = 0;
this.c4 = false;
this.dn = null;
this.dq = null;
this.dm = null;
this.c6 = 0;
this.dk = 0;
this.dp = null;
this.c8 = 0;
this.da = 0;
this.c9 = 0;
this.c7 = 0;
this.db = 0;
}
get_type() {
return "ValueOverlay";
}
get axisRef() {
return this.dr;
}
set axisRef(a) {
this.dr = a;
this.e("AxisRef");
}
get value() {
return this.dc;
}
set value(a) {
this.dc = a;
this.e("Value");
}
get isAxisAnnotationEnabled() {
return this.c4;
}
set isAxisAnnotationEnabled(a) {
this.c4 = a;
this.e("IsAxisAnnotationEnabled");
}
get axisAnnotationFormatLabelRef() {
return this.dn;
}
set axisAnnotationFormatLabelRef(a) {
this.dn = a;
this.e("AxisAnnotationFormatLabelRef");
}
get axisAnnotationTextColor() {
return this.dq;
}
set axisAnnotationTextColor(a) {
this.dq = a;
this.e("AxisAnnotationTextColor");
}
get axisAnnotationBackground() {
return this.dm;
}
set axisAnnotationBackground(a) {
this.dm = a;
this.e("AxisAnnotationBackground");
}
get axisAnnotationBackgroundCornerRadius() {
return this.c6;
}
set axisAnnotationBackgroundCornerRadius(a) {
this.c6 = a;
this.e("AxisAnnotationBackgroundCornerRadius");
}
get axisAnnotationInterpolatedValuePrecision() {
return this.dk;
}
set axisAnnotationInterpolatedValuePrecision(a) {
this.dk = a;
this.e("AxisAnnotationInterpolatedValuePrecision");
}
get axisAnnotationOutline() {
return this.dp;
}
set axisAnnotationOutline(a) {
this.dp = a;
this.e("AxisAnnotationOutline");
}
get axisAnnotationPaddingLeft() {
return this.c8;
}
set axisAnnotationPaddingLeft(a) {
this.c8 = a;
this.e("AxisAnnotationPaddingLeft");
}
get axisAnnotationPaddingTop() {
return this.da;
}
set axisAnnotationPaddingTop(a) {
this.da = a;
this.e("AxisAnnotationPaddingTop");
}
get axisAnnotationPaddingRight() {
return this.c9;
}
set axisAnnotationPaddingRight(a) {
this.c9 = a;
this.e("AxisAnnotationPaddingRight");
}
get axisAnnotationPaddingBottom() {
return this.c7;
}
set axisAnnotationPaddingBottom(a) {
this.c7 = a;
this.e("AxisAnnotationPaddingBottom");
}
get axisAnnotationStrokeThickness() {
return this.db;
}
set axisAnnotationStrokeThickness(a) {
this.db = a;
this.e("AxisAnnotationStrokeThickness");
}
}
ValueOverlayDescription.$t = markType(ValueOverlayDescription, 'ValueOverlayDescription', SeriesDescription.$);
return ValueOverlayDescription;
})();