123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- /**
- * @license Highcharts JS v9.1.1 (2021-06-04)
- *
- * Pareto series type for Highcharts
- *
- * (c) 2010-2021 Sebastian Bochan
- *
- * License: www.highcharts.com/license
- */
- 'use strict';
- (function (factory) {
- if (typeof module === 'object' && module.exports) {
- factory['default'] = factory;
- module.exports = factory;
- } else if (typeof define === 'function' && define.amd) {
- define('highcharts/modules/pareto', ['highcharts'], function (Highcharts) {
- factory(Highcharts);
- factory.Highcharts = Highcharts;
- return factory;
- });
- } else {
- factory(typeof Highcharts !== 'undefined' ? Highcharts : undefined);
- }
- }(function (Highcharts) {
- var _modules = Highcharts ? Highcharts._modules : {};
- function _registerModule(obj, path, args, fn) {
- if (!obj.hasOwnProperty(path)) {
- obj[path] = fn.apply(null, args);
- }
- }
- _registerModule(_modules, 'Mixins/DerivedSeries.js', [_modules['Core/Globals.js'], _modules['Core/Series/Series.js'], _modules['Core/Utilities.js']], function (H, Series, U) {
- /* *
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- var noop = H.noop;
- var addEvent = U.addEvent,
- defined = U.defined;
- /* ************************************************************************** *
- *
- * DERIVED SERIES MIXIN
- *
- * ************************************************************************** */
- /**
- * Provides methods for auto setting/updating series data based on the based
- * series data.
- *
- * @private
- * @mixin derivedSeriesMixin
- */
- var derivedSeriesMixin = {
- hasDerivedData: true,
- /* eslint-disable valid-jsdoc */
- /**
- * Initialise series
- *
- * @private
- * @function derivedSeriesMixin.init
- * @return {void}
- */
- init: function () {
- Series.prototype.init.apply(this,
- arguments);
- this.initialised = false;
- this.baseSeries = null;
- this.eventRemovers = [];
- this.addEvents();
- },
- /**
- * Method to be implemented - inside the method the series has already
- * access to the base series via m `this.baseSeries` and the bases data is
- * initialised. It should return data in the format accepted by
- * `Series.setData()` method
- *
- * @private
- * @function derivedSeriesMixin.setDerivedData
- * @return {Array<Highcharts.PointOptionsType>}
- * An array of data
- */
- setDerivedData: noop,
- /**
- * Sets base series for the series
- *
- * @private
- * @function derivedSeriesMixin.setBaseSeries
- * @return {void}
- */
- setBaseSeries: function () {
- var chart = this.chart,
- baseSeriesOptions = this.options.baseSeries,
- baseSeries = (defined(baseSeriesOptions) &&
- (chart.series[baseSeriesOptions] ||
- chart.get(baseSeriesOptions)));
- this.baseSeries = baseSeries || null;
- },
- /**
- * Adds events for the series
- *
- * @private
- * @function derivedSeriesMixin.addEvents
- * @return {void}
- */
- addEvents: function () {
- var derivedSeries = this,
- chartSeriesLinked;
- chartSeriesLinked = addEvent(this.chart, 'afterLinkSeries', function () {
- derivedSeries.setBaseSeries();
- if (derivedSeries.baseSeries && !derivedSeries.initialised) {
- derivedSeries.setDerivedData();
- derivedSeries.addBaseSeriesEvents();
- derivedSeries.initialised = true;
- }
- });
- this.eventRemovers.push(chartSeriesLinked);
- },
- /**
- * Adds events to the base series - it required for recalculating the data
- * in the series if the base series is updated / removed / etc.
- *
- * @private
- * @function derivedSeriesMixin.addBaseSeriesEvents
- * @return {void}
- */
- addBaseSeriesEvents: function () {
- var derivedSeries = this,
- updatedDataRemover,
- destroyRemover;
- updatedDataRemover = addEvent(derivedSeries.baseSeries, 'updatedData', function () {
- derivedSeries.setDerivedData();
- });
- destroyRemover = addEvent(derivedSeries.baseSeries, 'destroy', function () {
- derivedSeries.baseSeries = null;
- derivedSeries.initialised = false;
- });
- derivedSeries.eventRemovers.push(updatedDataRemover, destroyRemover);
- },
- /**
- * Destroys the series
- *
- * @private
- * @function derivedSeriesMixin.destroy
- */
- destroy: function () {
- this.eventRemovers.forEach(function (remover) {
- remover();
- });
- Series.prototype.destroy.apply(this, arguments);
- }
- /* eslint-disable valid-jsdoc */
- };
- return derivedSeriesMixin;
- });
- _registerModule(_modules, 'Series/ParetoSeries/ParetoSeries.js', [_modules['Mixins/DerivedSeries.js'], _modules['Core/Series/SeriesRegistry.js'], _modules['Core/Utilities.js']], function (DerivedSeriesMixin, SeriesRegistry, U) {
- /* *
- *
- * (c) 2010-2021 Sebastian Bochan
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- 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 (b.hasOwnProperty(p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var LineSeries = SeriesRegistry.seriesTypes.line;
- var correctFloat = U.correctFloat,
- merge = U.merge,
- extend = U.extend;
- /* *
- *
- * Class
- *
- * */
- /**
- * The pareto series type.
- *
- * @private
- * @class
- * @name Highcharts.seriesTypes.pareto
- *
- * @augments Highcharts.Series
- */
- var ParetoSeries = /** @class */ (function (_super) {
- __extends(ParetoSeries, _super);
- function ParetoSeries() {
- /* *
- *
- * Static properties
- *
- * */
- var _this = _super !== null && _super.apply(this,
- arguments) || this;
- /* *
- *
- * Properties
- *
- * */
- _this.data = void 0;
- _this.points = void 0;
- _this.options = void 0;
- return _this;
- }
- /* *
- *
- * Functions
- *
- * */
- /**
- * Calculate y sum and each percent point.
- *
- * @private
- * @function Highcharts.Series#sumPointsPercents
- *
- * @param {Array<number>} yValues
- * Y values
- *
- * @param {Array<number>} xValues
- * X values
- *
- * @param {number} sum
- * Sum of all y values
- *
- * @param {boolean} [isSum]
- * Declares if calculate sum of all points
- *
- * @return {number|Array<number,number>}
- * Returns sum of points or array of points [x,sum]
- *
- * @requires modules/pareto
- */
- ParetoSeries.prototype.sumPointsPercents = function (yValues, xValues, sum, isSum) {
- var sumY = 0,
- sumPercent = 0,
- percentPoints = [],
- percentPoint;
- yValues.forEach(function (point, i) {
- if (point !== null) {
- if (isSum) {
- sumY += point;
- }
- else {
- percentPoint = (point / sum) * 100;
- percentPoints.push([
- xValues[i],
- correctFloat(sumPercent + percentPoint)
- ]);
- sumPercent += percentPoint;
- }
- }
- });
- return (isSum ? sumY : percentPoints);
- };
- /**
- * Calculate sum and return percent points.
- *
- * @private
- * @function Highcharts.Series#setDerivedData
- * @requires modules/pareto
- */
- ParetoSeries.prototype.setDerivedData = function () {
- var xValues = this.baseSeries.xData,
- yValues = this.baseSeries.yData,
- sum = this.sumPointsPercents(yValues,
- xValues,
- null,
- true);
- this.setData(this.sumPointsPercents(yValues, xValues, sum, false), false);
- };
- /**
- * A pareto diagram is a type of chart that contains both bars and a line
- * graph, where individual values are represented in descending order by
- * bars, and the cumulative total is represented by the line.
- *
- * @sample {highcharts} highcharts/demo/pareto/
- * Pareto diagram
- *
- * @extends plotOptions.line
- * @since 6.0.0
- * @product highcharts
- * @excluding allAreas, boostThreshold, borderColor, borderRadius,
- * borderWidth, crisp, colorAxis, depth, data, dragDrop,
- * edgeColor, edgeWidth, findNearestPointBy, gapSize, gapUnit,
- * grouping, groupPadding, groupZPadding, maxPointWidth, keys,
- * negativeColor, pointInterval, pointIntervalUnit,
- * pointPadding, pointPlacement, pointRange, pointStart,
- * pointWidth, shadow, step, softThreshold, stacking,
- * threshold, zoneAxis, zones, boostBlending
- * @requires modules/pareto
- * @optionparent plotOptions.pareto
- */
- ParetoSeries.defaultOptions = merge(LineSeries.defaultOptions, {
- /**
- * Higher zIndex than column series to draw line above shapes.
- */
- zIndex: 3
- });
- return ParetoSeries;
- }(LineSeries));
- extend(ParetoSeries.prototype, {
- addBaseSeriesEvents: DerivedSeriesMixin.addBaseSeriesEvents,
- addEvents: DerivedSeriesMixin.addEvents,
- destroy: DerivedSeriesMixin.destroy,
- hasDerivedData: DerivedSeriesMixin.hasDerivedData,
- init: DerivedSeriesMixin.init,
- setBaseSeries: DerivedSeriesMixin.setBaseSeries
- });
- SeriesRegistry.registerSeriesType('pareto', ParetoSeries);
- /* *
- *
- * Default export
- *
- * */
- /* *
- *
- * API options
- *
- * */
- /**
- * A `pareto` series. If the [type](#series.pareto.type) option is not
- * specified, it is inherited from [chart.type](#chart.type).
- *
- * @extends series,plotOptions.pareto
- * @since 6.0.0
- * @product highcharts
- * @excluding data, dataParser, dataURL, boostThreshold, boostBlending
- * @requires modules/pareto
- * @apioption series.pareto
- */
- /**
- * An integer identifying the index to use for the base series, or a string
- * representing the id of the series.
- *
- * @type {number|string}
- * @default undefined
- * @apioption series.pareto.baseSeries
- */
- /**
- * An array of data points for the series. For the `pareto` series type,
- * points are calculated dynamically.
- *
- * @type {Array<Array<number|string>|*>}
- * @extends series.column.data
- * @since 6.0.0
- * @product highcharts
- * @apioption series.pareto.data
- */
- ''; // adds the doclets above to the transpiled file
- return ParetoSeries;
- });
- _registerModule(_modules, 'masters/modules/pareto.src.js', [], function () {
- });
- }));
|