igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.35 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";
/**
* @hidden
*/
var SeriesRenderingArguments = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SeriesRenderingArguments, _super);
function SeriesRenderingArguments(a, b, c, d, e) {
var _this = _super.call(this) || this;
_this.e = null;
_this.f = null;
_this.c = 0;
_this.a = false;
_this.d = null;
_this.b = false;
_this.c = a.kc;
_this.d = a;
_this.e = b;
_this.f = c;
_this.a = d;
_this.b = e;
return _this;
}
SeriesRenderingArguments.$t = markType(SeriesRenderingArguments, 'SeriesRenderingArguments');
return SeriesRenderingArguments;
}(Base));
export { SeriesRenderingArguments };