UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

110 lines (109 loc) 3.65 kB
/* 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-react-core"; /** * @hidden */ var FinancialChartContext = /** @class */ /*@__PURE__*/ (function (_super) { __extends(FinancialChartContext, _super); function FinancialChartContext() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._vm = null; _this._template = null; _this._container = null; _this._toolbarContainer = null; _this._legendContainer = null; _this._indicatorsContainer = null; _this._volumeContainer = null; _this._zoomContainer = null; return _this; } Object.defineProperty(FinancialChartContext.prototype, "vm", { get: function () { return this._vm; }, set: function (a) { this._vm = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "template", { get: function () { return this._template; }, set: function (a) { this._template = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "container", { get: function () { return this._container; }, set: function (a) { this._container = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "toolbarContainer", { get: function () { return this._toolbarContainer; }, set: function (a) { this._toolbarContainer = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "legendContainer", { get: function () { return this._legendContainer; }, set: function (a) { this._legendContainer = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "indicatorsContainer", { get: function () { return this._indicatorsContainer; }, set: function (a) { this._indicatorsContainer = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "volumeContainer", { get: function () { return this._volumeContainer; }, set: function (a) { this._volumeContainer = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartContext.prototype, "zoomContainer", { get: function () { return this._zoomContainer; }, set: function (a) { this._zoomContainer = a; }, enumerable: false, configurable: true }); FinancialChartContext.$t = markType(FinancialChartContext, 'FinancialChartContext'); return FinancialChartContext; }(Base)); export { FinancialChartContext };