UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

73 lines (72 loc) 3.04 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.BoxPlotPointSeriesWrapped = void 0; var ValueName_1 = require("../../../types/ValueName"); var IDataSeries_1 = require("../IDataSeries"); var BasePointSeriesWrapped_1 = require("./BasePointSeriesWrapped"); var BoxPlotPointSeriesWrapped = /** @class */ (function (_super) { __extends(BoxPlotPointSeriesWrapped, _super); function BoxPlotPointSeriesWrapped(dataSeries) { var _this = _super.call(this, dataSeries, undefined, IDataSeries_1.EDataSeriesValueType.Default, [ ValueName_1.EValueName.BoxPlotMedian, ValueName_1.EValueName.BoxPlotMax, ValueName_1.EValueName.BoxPlotUpper, ValueName_1.EValueName.BoxPlotLower, ValueName_1.EValueName.BoxPlotMinimum ]) || this; _this.type = IDataSeries_1.EDataSeriesType.BoxPlot; return _this; } Object.defineProperty(BoxPlotPointSeriesWrapped.prototype, "medianValues", { get: function () { return this.yValuesArray[0]; }, enumerable: false, configurable: true }); Object.defineProperty(BoxPlotPointSeriesWrapped.prototype, "maximumValues", { get: function () { return this.yValuesArray[1]; }, enumerable: false, configurable: true }); Object.defineProperty(BoxPlotPointSeriesWrapped.prototype, "upperQuartileValues", { get: function () { return this.yValuesArray[2]; }, enumerable: false, configurable: true }); Object.defineProperty(BoxPlotPointSeriesWrapped.prototype, "lowerQuartileValues", { get: function () { return this.yValuesArray[3]; }, enumerable: false, configurable: true }); Object.defineProperty(BoxPlotPointSeriesWrapped.prototype, "minimumValues", { get: function () { return this.yValuesArray[4]; }, enumerable: false, configurable: true }); return BoxPlotPointSeriesWrapped; }(BasePointSeriesWrapped_1.BasePointSeriesWrapped)); exports.BoxPlotPointSeriesWrapped = BoxPlotPointSeriesWrapped;