Skip to content

Commit

Permalink
Addition to #7860: unnecessary comments removed.
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkulig committed Jan 14, 2019
1 parent 54842e2 commit 8009d3b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions js/parts/Series.js
Expand Up @@ -3753,8 +3753,6 @@ H.Series = H.seriesType('line',
i,
pointPlacement = series.pointPlacementToXValue(), // #7860
dynamicallyPlaced = isNumber(pointPlacement),
// pointPlacement === 'between' ||
// isNumber(pointPlacement),
threshold = options.threshold,
stackThreshold = options.startFromThreshold ? threshold : 0,
plotX,
Expand All @@ -3771,14 +3769,6 @@ H.Series = H.seriesType('line',
return Math.min(Math.max(-1e5, val), 1e5);
}

// Point placement is relative to each series pointRange (#5889)
// if (pointPlacement === 'between') {
// pointPlacement = 0.5;
// }
// if (isNumber(pointPlacement)) {
// pointPlacement *= pick(options.pointRange || xAxis.pointRange);
// }

// Translate each point
for (i = 0; i < dataLength; i++) {
var point = points[i],
Expand Down

0 comments on commit 8009d3b

Please sign in to comment.