igniteui-react-core
Version:
Ignite UI React Core.
136 lines (135 loc) • 4.25 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 {
get_type() {
return "ValueOverlay";
}
constructor() {
super();
this.fp = null;
this.fb = 0;
this.e3 = false;
this.fm = null;
this.fo = null;
this.fl = null;
this.e5 = 0;
this.fj = 0;
this.fn = null;
this.e7 = 0;
this.e9 = 0;
this.e8 = 0;
this.e6 = 0;
this.fa = 0;
}
get axisRef() {
return this.fp;
}
set axisRef(a) {
this.fp = a;
this.g("AxisRef");
}
get value() {
return this.fb;
}
set value(a) {
this.fb = a;
this.g("Value");
}
get isAxisAnnotationEnabled() {
return this.e3;
}
set isAxisAnnotationEnabled(a) {
this.e3 = a;
this.g("IsAxisAnnotationEnabled");
}
get axisAnnotationFormatLabelRef() {
return this.fm;
}
set axisAnnotationFormatLabelRef(a) {
this.fm = a;
this.g("AxisAnnotationFormatLabelRef");
}
get axisAnnotationTextColor() {
return this.fo;
}
set axisAnnotationTextColor(a) {
this.fo = a;
this.g("AxisAnnotationTextColor");
}
get axisAnnotationBackground() {
return this.fl;
}
set axisAnnotationBackground(a) {
this.fl = a;
this.g("AxisAnnotationBackground");
}
get axisAnnotationBackgroundCornerRadius() {
return this.e5;
}
set axisAnnotationBackgroundCornerRadius(a) {
this.e5 = a;
this.g("AxisAnnotationBackgroundCornerRadius");
}
get axisAnnotationInterpolatedValuePrecision() {
return this.fj;
}
set axisAnnotationInterpolatedValuePrecision(a) {
this.fj = a;
this.g("AxisAnnotationInterpolatedValuePrecision");
}
get axisAnnotationOutline() {
return this.fn;
}
set axisAnnotationOutline(a) {
this.fn = a;
this.g("AxisAnnotationOutline");
}
get axisAnnotationPaddingLeft() {
return this.e7;
}
set axisAnnotationPaddingLeft(a) {
this.e7 = a;
this.g("AxisAnnotationPaddingLeft");
}
get axisAnnotationPaddingTop() {
return this.e9;
}
set axisAnnotationPaddingTop(a) {
this.e9 = a;
this.g("AxisAnnotationPaddingTop");
}
get axisAnnotationPaddingRight() {
return this.e8;
}
set axisAnnotationPaddingRight(a) {
this.e8 = a;
this.g("AxisAnnotationPaddingRight");
}
get axisAnnotationPaddingBottom() {
return this.e6;
}
set axisAnnotationPaddingBottom(a) {
this.e6 = a;
this.g("AxisAnnotationPaddingBottom");
}
get axisAnnotationStrokeThickness() {
return this.fa;
}
set axisAnnotationStrokeThickness(a) {
this.fa = a;
this.g("AxisAnnotationStrokeThickness");
}
}
ValueOverlayDescription.$t = /*@__PURE__*/ markType(ValueOverlayDescription, 'ValueOverlayDescription', SeriesDescription.$);
return ValueOverlayDescription;
})();