Skip to content

Commit c3cc927

Browse files
committed
fix bug introduced in cleanup
1 parent f147644 commit c3cc927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traces/parcoords/parcoords.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ module.exports = function(root, svg, parcoordsLineLayers, styledData, layout, ca
607607
function extremeText(d, isTop) {
608608
if(d.ordinal) return '';
609609
var domain = d.domainScale.domain();
610-
d3.format(d.tickFormat)(domain[isTop ? domain.length - 1 : 0]);
610+
return d3.format(d.tickFormat)(domain[isTop ? domain.length - 1 : 0]);
611611
}
612612

613613
axisExtentTopText.enter()

0 commit comments

Comments
 (0)