igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.44 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 { __extends } from "tslib";
import { Base, markType } from "igniteui-react-core";
/**
* @hidden
*/
var PolarAxisInfoCache = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(PolarAxisInfoCache, _super);
function PolarAxisInfoCache(a, b, c) {
var _this = _super.call(this) || this;
_this.a = null;
_this.b = null;
_this.e = false;
_this.g = false;
_this.d = false;
_this.f = false;
_this.c = null;
_this.i = 0;
_this.h = 0;
_this.a = a;
_this.b = b;
_this.e = _this.a.lp;
_this.d = _this.a.ch;
_this.g = _this.b.lp;
_this.f = _this.b.ch;
_this.i = _this.b.n7;
_this.h = _this.b.n6;
_this.c = c;
return _this;
}
PolarAxisInfoCache.$t = markType(PolarAxisInfoCache, 'PolarAxisInfoCache');
return PolarAxisInfoCache;
}(Base));
export { PolarAxisInfoCache };