igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
56 lines (55 loc) • 2.08 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, getInstanceType } from "igniteui-angular-core";
import { IOverlayProxy_$type } from "./IOverlayProxy";
/**
* @hidden
*/
var OverlayProxy = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(OverlayProxy, _super);
function OverlayProxy() {
return _super !== null && _super.apply(this, arguments) || this;
}
OverlayProxy.prototype.matchesType = function (a) {
if (a.e8) {
return true;
}
return false;
};
OverlayProxy.prototype.setCloseMemberPath = function (a, b) {
a.y9 = b;
};
OverlayProxy.prototype.setHighMemberPath = function (a, b) {
a.zm = b;
};
OverlayProxy.prototype.setLowMemberPath = function (a, b) {
a.zr = b;
};
OverlayProxy.prototype.setMultiplier = function (a, b) {
if (getInstanceType(a).typeName == "BollingerBandsOverlay") {
var s_ = a;
var p_ = b;
s_['multiplier'] = p_;
}
};
OverlayProxy.prototype.setOpenMemberPath = function (a, b) {
a.zv = b;
};
OverlayProxy.prototype.setVolumeMemberPath = function (a, b) {
a.zz = b;
};
OverlayProxy.prototype.setXAxis = function (a, b) {
a.w5 = b;
};
OverlayProxy.prototype.setYAxis = function (a, b) {
a.xo = b;
};
OverlayProxy.$t = markType(OverlayProxy, 'OverlayProxy', Base.$, [IOverlayProxy_$type]);
return OverlayProxy;
}(Base));
export { OverlayProxy };