UNPKG

igniteui-react-charts

Version:

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

66 lines (65 loc) 2.66 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 FinancialChartToolbarViewModel = /** @class */ /*@__PURE__*/ (function (_super) { __extends(FinancialChartToolbarViewModel, _super); function FinancialChartToolbarViewModel() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._financialChartRangeSelector = null; _this._financialChartTypePicker = null; _this._financialChartIndicatorMenu = null; _this._isIndicatorMenuVisible = false; return _this; } Object.defineProperty(FinancialChartToolbarViewModel.prototype, "financialChartRangeSelector", { get: function () { return this._financialChartRangeSelector; }, set: function (a) { this._financialChartRangeSelector = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartToolbarViewModel.prototype, "financialChartTypePicker", { get: function () { return this._financialChartTypePicker; }, set: function (a) { this._financialChartTypePicker = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartToolbarViewModel.prototype, "financialChartIndicatorMenu", { get: function () { return this._financialChartIndicatorMenu; }, set: function (a) { this._financialChartIndicatorMenu = a; }, enumerable: false, configurable: true }); Object.defineProperty(FinancialChartToolbarViewModel.prototype, "isIndicatorMenuVisible", { get: function () { return this._isIndicatorMenuVisible; }, set: function (a) { this._isIndicatorMenuVisible = a; }, enumerable: false, configurable: true }); FinancialChartToolbarViewModel.$t = markType(FinancialChartToolbarViewModel, 'FinancialChartToolbarViewModel'); return FinancialChartToolbarViewModel; }(Base)); export { FinancialChartToolbarViewModel };