igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
44 lines (43 loc) • 1.9 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 { AxisAnnotationFrame } from "./AxisAnnotationFrame";
import { List$1 } from "igniteui-angular-core";
import { Brush } from "igniteui-angular-core";
import { Frame } from "./Frame";
import { FrameExtended } from "./FrameExtended";
import { Number_$type, markType } from "igniteui-angular-core";
/**
* @hidden
*/
var ValueLayerFrame = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ValueLayerFrame, _super);
function ValueLayerFrame() {
var _this = _super.call(this) || this;
_this.af = null;
_this.ag = null;
_this.ae = null;
_this.ah = null;
_this.af = new List$1(Number_$type, 0);
_this.ag = new List$1(Number_$type, 0);
_this.ae = new List$1(Brush.$, 0);
_this.ah = new List$1(Brush.$, 0);
return _this;
}
ValueLayerFrame.prototype.c = function (a, b, c) {
_super.prototype.c.call(this, a, b, c);
var d = b;
var e = c;
Frame.b(this.af, a, d.af, e.af);
Frame.b(this.ag, a, d.ag, e.ag);
FrameExtended.a(this.ae, a, d.ae, e.ae, 0);
FrameExtended.a(this.ah, a, d.ah, e.ah, 0);
};
ValueLayerFrame.$t = markType(ValueLayerFrame, 'ValueLayerFrame', AxisAnnotationFrame.$);
return ValueLayerFrame;
}(AxisAnnotationFrame));
export { ValueLayerFrame };