igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
35 lines (34 loc) • 1.43 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, IEquatable$1_$type, typeCast, markType } from "igniteui-react-core";
/**
* @hidden
*/
var AxisRange = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(AxisRange, _super);
function AxisRange(a, b) {
var _this = _super.call(this) || this;
_this.c = 0;
_this.b = 0;
_this.c = a;
_this.b = b;
return _this;
}
AxisRange.prototype.equals = function (a) {
return a != null && this.c == a.c && this.b == a.b;
};
AxisRange.prototype.equals1 = function (a) {
return this.equals(typeCast(AxisRange.$, a));
};
AxisRange.prototype.getHashCode = function () {
return _super.prototype.getHashCode.call(this);
};
AxisRange.$t = markType(AxisRange, 'AxisRange', Base.$, [IEquatable$1_$type.specialize(-1)]).initSelfReferences();
return AxisRange;
}(Base));
export { AxisRange };