igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.7 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, __read, __spreadArray } from "tslib";
import { DataContext } from "igniteui-react-core";
import { markType } from "igniteui-react-core";
/**
* @hidden
*/
var FunnelSliceDataContext = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FunnelSliceDataContext, _super);
function FunnelSliceDataContext() {
var _this = _super.apply(this, __spreadArray([], __read(arguments), false)) || this;
_this._itemOutline = null;
return _this;
}
Object.defineProperty(FunnelSliceDataContext.prototype, "itemOutline", {
get: function () {
return this._itemOutline;
},
set: function (a) {
this._itemOutline = a;
},
enumerable: false,
configurable: true
});
FunnelSliceDataContext.prototype.flatten = function () {
var ret_ = _super.prototype.flatten.call(this);
var itemOutline_ = this.itemOutline;
ret_.itemOutline = itemOutline_;
return ret_;
};
FunnelSliceDataContext.$t = markType(FunnelSliceDataContext, 'FunnelSliceDataContext', DataContext.$);
return FunnelSliceDataContext;
}(DataContext));
export { FunnelSliceDataContext };