| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811 |
- /* *
- *
- * (c) 2010-2020 Torstein Honsi
- *
- * License: www.highcharts.com/license
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- 'use strict';
- import Axis from '../Core/Axis/Axis.js';
- import Chart from '../Core/Chart/Chart.js';
- import H from '../Core/Globals.js';
- import Point from '../Core/Series/Point.js';
- import StackItem from '../Extensions/Stacking.js';
- import U from '../Core/Utilities.js';
- var addEvent = U.addEvent, arrayMax = U.arrayMax, arrayMin = U.arrayMin, correctFloat = U.correctFloat, isNumber = U.isNumber, objectEach = U.objectEach, pick = U.pick, seriesType = U.seriesType;
- import '../Core/Options.js';
- import '../Core/Series/Series.js';
- var Series = H.Series, seriesTypes = H.seriesTypes;
- /**
- * Returns true if the key is a direct property of the object.
- * @private
- * @param {*} obj - Object with property to test
- * @param {string} key - Property key to test
- * @return {boolean} - Whether it is a direct property
- */
- function ownProp(obj, key) {
- return Object.hasOwnProperty.call(obj, key);
- }
- /**
- * @private
- */
- var WaterfallAxis;
- (function (WaterfallAxis) {
- /* *
- *
- * Interfaces
- *
- * */
- /* *
- *
- * Classes
- *
- * */
- /**
- * @private
- */
- var Composition = /** @class */ (function () {
- /* *
- *
- * Constructors
- *
- * */
- /**
- * @private
- */
- function Composition(axis) {
- this.axis = axis;
- this.stacks = {
- changed: false
- };
- }
- /* *
- *
- * Functions
- *
- * */
- /**
- * Calls StackItem.prototype.render function that creates and renders
- * stack total label for each waterfall stack item.
- *
- * @private
- * @function Highcharts.Axis#renderWaterfallStackTotals
- */
- Composition.prototype.renderStackTotals = function () {
- var yAxis = this.axis, waterfallStacks = yAxis.waterfall.stacks, stackTotalGroup = yAxis.stacking && yAxis.stacking.stackTotalGroup, dummyStackItem = new StackItem(yAxis, yAxis.options.stackLabels, false, 0, void 0);
- this.dummyStackItem = dummyStackItem;
- // Render each waterfall stack total
- objectEach(waterfallStacks, function (type) {
- objectEach(type, function (stackItem) {
- dummyStackItem.total = stackItem.stackTotal;
- if (stackItem.label) {
- dummyStackItem.label = stackItem.label;
- }
- StackItem.prototype.render.call(dummyStackItem, stackTotalGroup);
- stackItem.label = dummyStackItem.label;
- delete dummyStackItem.label;
- });
- });
- dummyStackItem.total = null;
- };
- return Composition;
- }());
- WaterfallAxis.Composition = Composition;
- /* *
- *
- * Functions
- *
- * */
- /**
- * @private
- */
- function compose(AxisClass, ChartClass) {
- addEvent(AxisClass, 'init', onInit);
- addEvent(AxisClass, 'afterBuildStacks', onAfterBuildStacks);
- addEvent(AxisClass, 'afterRender', onAfterRender);
- addEvent(ChartClass, 'beforeRedraw', onBeforeRedraw);
- }
- WaterfallAxis.compose = compose;
- /**
- * @private
- */
- function onAfterBuildStacks() {
- var axis = this;
- var stacks = axis.waterfall.stacks;
- if (stacks) {
- stacks.changed = false;
- delete stacks.alreadyChanged;
- }
- }
- /**
- * @private
- */
- function onAfterRender() {
- var axis = this;
- var stackLabelOptions = axis.options.stackLabels;
- if (stackLabelOptions && stackLabelOptions.enabled &&
- axis.waterfall.stacks) {
- axis.waterfall.renderStackTotals();
- }
- }
- /**
- * @private
- */
- function onBeforeRedraw() {
- var axes = this.axes, series = this.series, i = series.length;
- while (i--) {
- if (series[i].options.stacking) {
- axes.forEach(function (axis) {
- if (!axis.isXAxis) {
- axis.waterfall.stacks.changed = true;
- }
- });
- i = 0;
- }
- }
- }
- /**
- * @private
- */
- function onInit() {
- var axis = this;
- if (!axis.waterfall) {
- axis.waterfall = new Composition(axis);
- }
- }
- })(WaterfallAxis || (WaterfallAxis = {}));
- // eslint-disable-next-line valid-jsdoc
- /**
- * A waterfall chart displays sequentially introduced positive or negative
- * values in cumulative columns.
- *
- * @sample highcharts/demo/waterfall/
- * Waterfall chart
- * @sample highcharts/plotoptions/waterfall-inverted/
- * Horizontal (inverted) waterfall
- * @sample highcharts/plotoptions/waterfall-stacked/
- * Stacked waterfall chart
- *
- * @extends plotOptions.column
- * @excluding boostThreshold, boostBlending
- * @product highcharts
- * @requires highcharts-more
- * @optionparent plotOptions.waterfall
- */
- seriesType('waterfall', 'column', {
- /**
- * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
- * @apioption plotOptions.waterfall.color
- */
- /**
- * The color used specifically for positive point columns. When not
- * specified, the general series color is used.
- *
- * In styled mode, the waterfall colors can be set with the
- * `.highcharts-point-negative`, `.highcharts-sum` and
- * `.highcharts-intermediate-sum` classes.
- *
- * @sample {highcharts} highcharts/demo/waterfall/
- * Waterfall
- *
- * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
- * @product highcharts
- * @apioption plotOptions.waterfall.upColor
- */
- dataLabels: {
- inside: true
- },
- /**
- * The width of the line connecting waterfall columns.
- *
- * @product highcharts
- */
- lineWidth: 1,
- /**
- * The color of the line that connects columns in a waterfall series.
- *
- * In styled mode, the stroke can be set with the `.highcharts-graph` class.
- *
- * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
- * @since 3.0
- * @product highcharts
- */
- lineColor: '#333333',
- /**
- * A name for the dash style to use for the line connecting the columns
- * of the waterfall series. Possible values: Dash, DashDot, Dot, LongDash,
- * LongDashDot, LongDashDotDot, ShortDash, ShortDashDot, ShortDashDotDot,
- * ShortDot, Solid
- *
- * In styled mode, the stroke dash-array can be set with the
- * `.highcharts-graph` class.
- *
- * @type {Highcharts.DashStyleValue}
- * @since 3.0
- * @product highcharts
- */
- dashStyle: 'Dot',
- /**
- * The color of the border of each waterfall column.
- *
- * In styled mode, the border stroke can be set with the
- * `.highcharts-point` class.
- *
- * @type {Highcharts.ColorString|Highcharts.GradientColorObject|Highcharts.PatternObject}
- * @since 3.0
- * @product highcharts
- */
- borderColor: '#333333',
- states: {
- hover: {
- lineWidthPlus: 0 // #3126
- }
- }
- // Prototype members
- }, {
- pointValKey: 'y',
- // Property needed to prevent lines between the columns from disappearing
- // when negativeColor is used.
- showLine: true,
- // After generating points, set y-values for all sums.
- generatePoints: function () {
- var point, len, i, y;
- // Parent call:
- seriesTypes.column.prototype.generatePoints.apply(this);
- for (i = 0, len = this.points.length; i < len; i++) {
- point = this.points[i];
- y = this.processedYData[i];
- // override point value for sums
- // #3710 Update point does not propagate to sum
- if (point.isIntermediateSum || point.isSum) {
- point.y = correctFloat(y);
- }
- }
- },
- // Translate data points from raw values
- translate: function () {
- var series = this, options = series.options, yAxis = series.yAxis, len, i, points, point, shapeArgs, y, yValue, previousY, previousIntermediate, range, minPointLength = pick(options.minPointLength, 5), halfMinPointLength = minPointLength / 2, threshold = options.threshold, stacking = options.stacking, tooltipY, actualStack = yAxis.waterfall.stacks[series.stackKey], actualStackX, dummyStackItem, total, pointY, yPos, hPos;
- // run column series translate
- seriesTypes.column.prototype.translate.apply(series);
- previousY = previousIntermediate = threshold;
- points = series.points;
- for (i = 0, len = points.length; i < len; i++) {
- // cache current point object
- point = points[i];
- yValue = series.processedYData[i];
- shapeArgs = point.shapeArgs;
- range = [0, yValue];
- pointY = point.y;
- // code responsible for correct positions of stacked points
- // starts here
- if (stacking) {
- if (actualStack) {
- actualStackX = actualStack[i];
- if (stacking === 'overlap') {
- total =
- actualStackX.stackState[actualStackX.stateIndex--];
- y = pointY >= 0 ? total : total - pointY;
- if (ownProp(actualStackX, 'absolutePos')) {
- delete actualStackX.absolutePos;
- }
- if (ownProp(actualStackX, 'absoluteNeg')) {
- delete actualStackX.absoluteNeg;
- }
- }
- else {
- if (pointY >= 0) {
- total = actualStackX.threshold +
- actualStackX.posTotal;
- actualStackX.posTotal -= pointY;
- y = total;
- }
- else {
- total = actualStackX.threshold +
- actualStackX.negTotal;
- actualStackX.negTotal -= pointY;
- y = total - pointY;
- }
- if (!actualStackX.posTotal) {
- if (ownProp(actualStackX, 'absolutePos')) {
- actualStackX.posTotal =
- actualStackX.absolutePos;
- delete actualStackX.absolutePos;
- }
- }
- if (!actualStackX.negTotal) {
- if (ownProp(actualStackX, 'absoluteNeg')) {
- actualStackX.negTotal =
- actualStackX.absoluteNeg;
- delete actualStackX.absoluteNeg;
- }
- }
- }
- if (!point.isSum) {
- // the connectorThreshold property is later used in
- // getCrispPath function to draw a connector line in a
- // correct place
- actualStackX.connectorThreshold =
- actualStackX.threshold + actualStackX.stackTotal;
- }
- if (yAxis.reversed) {
- yPos = (pointY >= 0) ? (y - pointY) : (y + pointY);
- hPos = y;
- }
- else {
- yPos = y;
- hPos = y - pointY;
- }
- point.below = yPos <= pick(threshold, 0);
- shapeArgs.y = yAxis.translate(yPos, 0, 1, 0, 1);
- shapeArgs.height = Math.abs(shapeArgs.y -
- yAxis.translate(hPos, 0, 1, 0, 1));
- }
- dummyStackItem = yAxis.waterfall.dummyStackItem;
- if (dummyStackItem) {
- dummyStackItem.x = i;
- dummyStackItem.label = actualStack[i].label;
- dummyStackItem.setOffset(series.pointXOffset || 0, series.barW || 0, series.stackedYNeg[i], series.stackedYPos[i]);
- }
- }
- else {
- // up points
- y =
- Math.max(previousY, previousY + pointY) + range[0];
- shapeArgs.y =
- yAxis.translate(y, 0, 1, 0, 1);
- // sum points
- if (point.isSum) {
- shapeArgs.y = yAxis.translate(range[1], 0, 1, 0, 1);
- shapeArgs.height = Math.min(yAxis.translate(range[0], 0, 1, 0, 1), yAxis.len) - shapeArgs.y; // #4256
- }
- else if (point.isIntermediateSum) {
- if (pointY >= 0) {
- yPos = range[1] + previousIntermediate;
- hPos = previousIntermediate;
- }
- else {
- yPos = previousIntermediate;
- hPos = range[1] + previousIntermediate;
- }
- if (yAxis.reversed) {
- // swapping values
- yPos ^= hPos;
- hPos ^= yPos;
- yPos ^= hPos;
- }
- shapeArgs.y = yAxis.translate(yPos, 0, 1, 0, 1);
- shapeArgs.height = Math.abs(shapeArgs.y -
- Math.min(yAxis.translate(hPos, 0, 1, 0, 1), yAxis.len));
- previousIntermediate += range[1];
- // If it's not the sum point, update previous stack end position
- // and get shape height (#3886)
- }
- else {
- shapeArgs.height = yValue > 0 ?
- yAxis.translate(previousY, 0, 1, 0, 1) - shapeArgs.y :
- yAxis.translate(previousY, 0, 1, 0, 1) - yAxis.translate(previousY - yValue, 0, 1, 0, 1);
- previousY += yValue;
- point.below = previousY < pick(threshold, 0);
- }
- // #3952 Negative sum or intermediate sum not rendered correctly
- if (shapeArgs.height < 0) {
- shapeArgs.y += shapeArgs.height;
- shapeArgs.height *= -1;
- }
- }
- point.plotY = shapeArgs.y =
- Math.round(shapeArgs.y) - (series.borderWidth % 2) / 2;
- // #3151
- shapeArgs.height =
- Math.max(Math.round(shapeArgs.height), 0.001);
- point.yBottom = shapeArgs.y + shapeArgs.height;
- if (shapeArgs.height <= minPointLength && !point.isNull) {
- shapeArgs.height = minPointLength;
- shapeArgs.y -= halfMinPointLength;
- point.plotY = shapeArgs.y;
- if (point.y < 0) {
- point.minPointLengthOffset = -halfMinPointLength;
- }
- else {
- point.minPointLengthOffset = halfMinPointLength;
- }
- }
- else {
- if (point.isNull) {
- shapeArgs.width = 0;
- }
- point.minPointLengthOffset = 0;
- }
- // Correct tooltip placement (#3014)
- tooltipY =
- point.plotY + (point.negative ? shapeArgs.height : 0);
- if (series.chart.inverted) {
- point.tooltipPos[0] = yAxis.len - tooltipY;
- }
- else {
- point.tooltipPos[1] = tooltipY;
- }
- }
- },
- // Call default processData then override yData to reflect waterfall's
- // extremes on yAxis
- processData: function (force) {
- var series = this, options = series.options, yData = series.yData,
- // #3710 Update point does not propagate to sum
- points = options.data, point, dataLength = yData.length, threshold = options.threshold || 0, subSum, sum, dataMin, dataMax, y, i;
- sum = subSum = dataMin = dataMax = 0;
- for (i = 0; i < dataLength; i++) {
- y = yData[i];
- point = points && points[i] ? points[i] : {};
- if (y === 'sum' || point.isSum) {
- yData[i] = correctFloat(sum);
- }
- else if (y === 'intermediateSum' ||
- point.isIntermediateSum) {
- yData[i] = correctFloat(subSum);
- subSum = 0;
- }
- else {
- sum += y;
- subSum += y;
- }
- dataMin = Math.min(sum, dataMin);
- dataMax = Math.max(sum, dataMax);
- }
- Series.prototype.processData.call(this, force);
- // Record extremes only if stacking was not set:
- if (!options.stacking) {
- series.dataMin = dataMin + threshold;
- series.dataMax = dataMax;
- }
- return;
- },
- // Return y value or string if point is sum
- toYData: function (pt) {
- if (pt.isSum) {
- return 'sum';
- }
- if (pt.isIntermediateSum) {
- return 'intermediateSum';
- }
- return pt.y;
- },
- updateParallelArrays: function (point, i) {
- Series.prototype.updateParallelArrays.call(this, point, i);
- // Prevent initial sums from triggering an error (#3245, #7559)
- if (this.yData[0] === 'sum' || this.yData[0] === 'intermediateSum') {
- this.yData[0] = null;
- }
- },
- // Postprocess mapping between options and SVG attributes
- pointAttribs: function (point, state) {
- var upColor = this.options.upColor, attr;
- // Set or reset up color (#3710, update to negative)
- if (upColor && !point.options.color) {
- point.color = point.y > 0 ? upColor : null;
- }
- attr = seriesTypes.column.prototype.pointAttribs.call(this, point, state);
- // The dashStyle option in waterfall applies to the graph, not
- // the points
- delete attr.dashstyle;
- return attr;
- },
- // Return an empty path initially, because we need to know the stroke-width
- // in order to set the final path.
- getGraphPath: function () {
- return [['M', 0, 0]];
- },
- // Draw columns' connector lines
- getCrispPath: function () {
- var data = this.data, yAxis = this.yAxis, length = data.length, graphNormalizer = Math.round(this.graph.strokeWidth()) % 2 / 2, borderNormalizer = Math.round(this.borderWidth) % 2 / 2, reversedXAxis = this.xAxis.reversed, reversedYAxis = this.yAxis.reversed, stacking = this.options.stacking, path = [], connectorThreshold, prevStack, prevStackX, prevPoint, yPos, isPos, prevArgs, pointArgs, i;
- for (i = 1; i < length; i++) {
- pointArgs = data[i].shapeArgs;
- prevPoint = data[i - 1];
- prevArgs = data[i - 1].shapeArgs;
- prevStack = yAxis.waterfall.stacks[this.stackKey];
- isPos = prevPoint.y > 0 ? -prevArgs.height : 0;
- if (prevStack && prevArgs && pointArgs) {
- prevStackX = prevStack[i - 1];
- // y position of the connector is different when series are
- // stacked, yAxis is reversed and it also depends on point's
- // value
- if (stacking) {
- connectorThreshold = prevStackX.connectorThreshold;
- yPos = Math.round((yAxis.translate(connectorThreshold, 0, 1, 0, 1) +
- (reversedYAxis ? isPos : 0))) - graphNormalizer;
- }
- else {
- yPos =
- prevArgs.y + prevPoint.minPointLengthOffset +
- borderNormalizer - graphNormalizer;
- }
- path.push([
- 'M',
- (prevArgs.x || 0) + (reversedXAxis ?
- 0 :
- (prevArgs.width || 0)),
- yPos
- ], [
- 'L',
- (pointArgs.x || 0) + (reversedXAxis ?
- (pointArgs.width || 0) :
- 0),
- yPos
- ]);
- }
- if (!stacking &&
- path.length &&
- prevArgs &&
- ((prevPoint.y < 0 && !reversedYAxis) ||
- (prevPoint.y > 0 && reversedYAxis))) {
- path[path.length - 2][2] += prevArgs.height;
- path[path.length - 1][2] += prevArgs.height;
- }
- }
- return path;
- },
- // The graph is initially drawn with an empty definition, then updated with
- // crisp rendering.
- drawGraph: function () {
- Series.prototype.drawGraph.call(this);
- this.graph.attr({
- d: this.getCrispPath()
- });
- },
- // Waterfall has stacking along the x-values too.
- setStackedPoints: function () {
- var series = this, options = series.options, waterfallStacks = series.yAxis.waterfall.stacks, seriesThreshold = options.threshold, stackThreshold = seriesThreshold || 0, interSum = stackThreshold, stackKey = series.stackKey, xData = series.xData, xLength = xData.length, actualStack, actualStackX, totalYVal, actualSum, prevSum, statesLen, posTotal, negTotal, xPoint, yVal, x, alreadyChanged, changed;
- // function responsible for calculating correct values for stackState
- // array of each stack item. The arguments are: firstS - the value for
- // the first state, nextS - the difference between the previous and the
- // newest state, sInx - counter used in the for that updates each state
- // when necessary, sOff - offset that must be added to each state when
- // they need to be updated (if point isn't a total sum)
- // eslint-disable-next-line require-jsdoc
- function calculateStackState(firstS, nextS, sInx, sOff) {
- if (!statesLen) {
- actualStackX.stackState[0] = firstS;
- statesLen = actualStackX.stackState.length;
- }
- else {
- for (sInx; sInx < statesLen; sInx++) {
- actualStackX.stackState[sInx] += sOff;
- }
- }
- actualStackX.stackState.push(actualStackX.stackState[statesLen - 1] + nextS);
- }
- series.yAxis.stacking.usePercentage = false;
- totalYVal = actualSum = prevSum = stackThreshold;
- // code responsible for creating stacks for waterfall series
- if (series.visible ||
- !series.chart.options.chart.ignoreHiddenSeries) {
- changed = waterfallStacks.changed;
- alreadyChanged = waterfallStacks.alreadyChanged;
- // in case of a redraw, stack for each x value must be
- // emptied (only for the first series in a specific stack)
- // and recalculated once more
- if (alreadyChanged &&
- alreadyChanged.indexOf(stackKey) < 0) {
- changed = true;
- }
- if (!waterfallStacks[stackKey]) {
- waterfallStacks[stackKey] = {};
- }
- actualStack = waterfallStacks[stackKey];
- for (var i = 0; i < xLength; i++) {
- x = xData[i];
- if (!actualStack[x] || changed) {
- actualStack[x] = {
- negTotal: 0,
- posTotal: 0,
- stackTotal: 0,
- threshold: 0,
- stateIndex: 0,
- stackState: [],
- label: ((changed &&
- actualStack[x]) ?
- actualStack[x].label :
- void 0)
- };
- }
- actualStackX = actualStack[x];
- yVal = series.yData[i];
- if (yVal >= 0) {
- actualStackX.posTotal += yVal;
- }
- else {
- actualStackX.negTotal += yVal;
- }
- // points do not exist yet, so raw data is used
- xPoint = options.data[i];
- posTotal = actualStackX.absolutePos =
- actualStackX.posTotal;
- negTotal = actualStackX.absoluteNeg =
- actualStackX.negTotal;
- actualStackX.stackTotal = posTotal + negTotal;
- statesLen = actualStackX.stackState.length;
- if (xPoint && xPoint.isIntermediateSum) {
- calculateStackState(prevSum, actualSum, 0, prevSum);
- prevSum = actualSum;
- actualSum = seriesThreshold;
- // swapping values
- stackThreshold ^= interSum;
- interSum ^= stackThreshold;
- stackThreshold ^= interSum;
- }
- else if (xPoint && xPoint.isSum) {
- calculateStackState(seriesThreshold, totalYVal, statesLen);
- stackThreshold = seriesThreshold;
- }
- else {
- calculateStackState(stackThreshold, yVal, 0, totalYVal);
- if (xPoint) {
- totalYVal += yVal;
- actualSum += yVal;
- }
- }
- actualStackX.stateIndex++;
- actualStackX.threshold = stackThreshold;
- stackThreshold += actualStackX.stackTotal;
- }
- waterfallStacks.changed = false;
- if (!waterfallStacks.alreadyChanged) {
- waterfallStacks.alreadyChanged = [];
- }
- waterfallStacks.alreadyChanged.push(stackKey);
- }
- },
- // Extremes for a non-stacked series are recorded in processData.
- // In case of stacking, use Series.stackedYData to calculate extremes.
- getExtremes: function () {
- var stacking = this.options.stacking, yAxis, waterfallStacks, stackedYNeg, stackedYPos;
- if (stacking) {
- yAxis = this.yAxis;
- waterfallStacks = yAxis.waterfall.stacks;
- stackedYNeg = this.stackedYNeg = [];
- stackedYPos = this.stackedYPos = [];
- // the visible y range can be different when stacking is set to
- // overlap and different when it's set to normal
- if (stacking === 'overlap') {
- objectEach(waterfallStacks[this.stackKey], function (stackX) {
- stackedYNeg.push(arrayMin(stackX.stackState));
- stackedYPos.push(arrayMax(stackX.stackState));
- });
- }
- else {
- objectEach(waterfallStacks[this.stackKey], function (stackX) {
- stackedYNeg.push(stackX.negTotal + stackX.threshold);
- stackedYPos.push(stackX.posTotal + stackX.threshold);
- });
- }
- return {
- dataMin: arrayMin(stackedYNeg),
- dataMax: arrayMax(stackedYPos)
- };
- }
- // When not stacking, data extremes have already been computed in the
- // processData function.
- return {
- dataMin: this.dataMin,
- dataMax: this.dataMax
- };
- }
- // Point members
- }, {
- getClassName: function () {
- var className = Point.prototype.getClassName.call(this);
- if (this.isSum) {
- className += ' highcharts-sum';
- }
- else if (this.isIntermediateSum) {
- className += ' highcharts-intermediate-sum';
- }
- return className;
- },
- // Pass the null test in ColumnSeries.translate.
- isValid: function () {
- return (isNumber(this.y) ||
- this.isSum ||
- Boolean(this.isIntermediateSum));
- }
- });
- /**
- * A `waterfall` series. If the [type](#series.waterfall.type) option
- * is not specified, it is inherited from [chart.type](#chart.type).
- *
- * @extends series,plotOptions.waterfall
- * @excluding dataParser, dataURL, boostThreshold, boostBlending
- * @product highcharts
- * @requires highcharts-more
- * @apioption series.waterfall
- */
- /**
- * An array of data points for the series. For the `waterfall` series
- * type, points can be given in the following ways:
- *
- * 1. An array of numerical values. In this case, the numerical values will be
- * interpreted as `y` options. The `x` values will be automatically
- * calculated, either starting at 0 and incremented by 1, or from
- * `pointStart` and `pointInterval` given in the series options. If the axis
- * has categories, these will be used. Example:
- * ```js
- * data: [0, 5, 3, 5]
- * ```
- *
- * 2. An array of arrays with 2 values. In this case, the values correspond to
- * `x,y`. If the first value is a string, it is applied as the name of the
- * point, and the `x` value is inferred.
- * ```js
- * data: [
- * [0, 7],
- * [1, 8],
- * [2, 3]
- * ]
- * ```
- *
- * 3. An array of objects with named values. The following snippet shows only a
- * few settings, see the complete options set below. If the total number of
- * data points exceeds the series'
- * [turboThreshold](#series.waterfall.turboThreshold), this option is not
- * available.
- * ```js
- * data: [{
- * x: 1,
- * y: 8,
- * name: "Point2",
- * color: "#00FF00"
- * }, {
- * x: 1,
- * y: 8,
- * name: "Point1",
- * color: "#FF00FF"
- * }]
- * ```
- *
- * @sample {highcharts} highcharts/chart/reflow-true/
- * Numerical values
- * @sample {highcharts} highcharts/series/data-array-of-arrays/
- * Arrays of numeric x and y
- * @sample {highcharts} highcharts/series/data-array-of-arrays-datetime/
- * Arrays of datetime x and y
- * @sample {highcharts} highcharts/series/data-array-of-name-value/
- * Arrays of point.name and y
- * @sample {highcharts} highcharts/series/data-array-of-objects/
- * Config objects
- *
- * @type {Array<number|Array<(number|string),(number|null)>|null|*>}
- * @extends series.line.data
- * @excluding marker
- * @product highcharts
- * @apioption series.waterfall.data
- */
- /**
- * When this property is true, the points acts as a summary column for
- * the values added or substracted since the last intermediate sum,
- * or since the start of the series. The `y` value is ignored.
- *
- * @sample {highcharts} highcharts/demo/waterfall/
- * Waterfall
- *
- * @type {boolean}
- * @default false
- * @product highcharts
- * @apioption series.waterfall.data.isIntermediateSum
- */
- /**
- * When this property is true, the point display the total sum across
- * the entire series. The `y` value is ignored.
- *
- * @sample {highcharts} highcharts/demo/waterfall/
- * Waterfall
- *
- * @type {boolean}
- * @default false
- * @product highcharts
- * @apioption series.waterfall.data.isSum
- */
- ''; // adds doclets above to transpiled file
- WaterfallAxis.compose(Axis, Chart);
- export default WaterfallAxis;
|