igniteui-angular-gauges
Version:
Ignite UI Angular gauge components.
33 lines (32 loc) • 1.46 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-angular-core";
import { LinearGraphBackingFrame } from "./LinearGraphBackingFrame";
import { LinearGraphRectFrame } from "./LinearGraphRectFrame";
/**
* @hidden
*/
var LinearGraphFrame = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(LinearGraphFrame, _super);
function LinearGraphFrame() {
var _this = _super.call(this) || this;
_this.a = null;
_this.b = null;
_this.a = new LinearGraphBackingFrame();
_this.b = new LinearGraphRectFrame();
return _this;
}
LinearGraphFrame.prototype.d = function (a, b, c) {
this.b = LinearGraphRectFrame.a(a, 1 - a, b.b, c.b);
this.c.y(a, b.c, c.c);
this.a.d(a, b.a, c.a);
};
LinearGraphFrame.$t = markType(LinearGraphFrame, 'LinearGraphFrame');
return LinearGraphFrame;
}(Base));
export { LinearGraphFrame };