igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
47 lines (46 loc) • 1.61 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 { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
export let LabelPosition = /*@__PURE__*/ (() => {
class LabelPosition extends Base {
constructor(a, ..._rest) {
super();
this.h = 0;
this.f = 0;
this.b = false;
this.i = null;
this.d = false;
this.a = false;
this.e = 0;
this.g = 0;
this.c = false;
a = (a == void 0) ? 0 : a;
switch (a) {
case 0:
{
let c = _rest[0];
this.h = c;
this.f = c;
}
break;
case 1:
{
let c = _rest[0];
let d = _rest[1];
this.h = c;
this.f = d;
}
break;
}
}
}
LabelPosition.$t = /*@__PURE__*/ markType(LabelPosition, 'LabelPosition');
return LabelPosition;
})();