UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

65 lines (64 loc) 2.66 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.OhlcPointSeriesWrapped = void 0; var ValueName_1 = require("../../../types/ValueName"); var IDataSeries_1 = require("../IDataSeries"); var BasePointSeriesWrapped_1 = require("./BasePointSeriesWrapped"); var OhlcPointSeriesWrapped = /** @class */ (function (_super) { __extends(OhlcPointSeriesWrapped, _super); function OhlcPointSeriesWrapped(dataSeries) { var _this = _super.call(this, dataSeries, undefined, IDataSeries_1.EDataSeriesValueType.Default, [ ValueName_1.EValueName.Close, ValueName_1.EValueName.Open, ValueName_1.EValueName.High, ValueName_1.EValueName.Low ]) || this; _this.type = IDataSeries_1.EDataSeriesType.Ohlc; return _this; } Object.defineProperty(OhlcPointSeriesWrapped.prototype, "closeValues", { get: function () { return this.yValuesArray[0]; }, enumerable: false, configurable: true }); Object.defineProperty(OhlcPointSeriesWrapped.prototype, "openValues", { get: function () { return this.yValuesArray[1]; }, enumerable: false, configurable: true }); Object.defineProperty(OhlcPointSeriesWrapped.prototype, "highValues", { get: function () { return this.yValuesArray[2]; }, enumerable: false, configurable: true }); Object.defineProperty(OhlcPointSeriesWrapped.prototype, "lowValues", { get: function () { return this.yValuesArray[3]; }, enumerable: false, configurable: true }); return OhlcPointSeriesWrapped; }(BasePointSeriesWrapped_1.BasePointSeriesWrapped)); exports.OhlcPointSeriesWrapped = OhlcPointSeriesWrapped;