We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5350d4e commit 9e8c3e9Copy full SHA for 9e8c3e9
src/traces/scatter/line_points.js
@@ -392,7 +392,7 @@ module.exports = function linePoints(d, opts) {
392
clusterRefDist = ptDist(clusterHighPt, clusterStartPt);
393
394
// #3147 - always include the very first and last points for fills
395
- if(!(fill && (pti === 0 || len - pti === 1)) &&
+ if(!(fill && (pti === 0 || pti === len - 1)) &&
396
clusterRefDist < getTolerance(clusterHighPt, nextPt) * minTolerance) continue;
397
398
clusterUnitVector = [
0 commit comments