Skip to content

Commit 1b7ebc7

Browse files
committed
don't show extreme values for semantically nominal axes
1 parent f51a541 commit 1b7ebc7

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/traces/parcoords/parcoords.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ module.exports = function(root, svg, styledData, layout, callbacks) {
619619
.data(repeat, keyFun);
620620

621621
function formatExtreme(d) {
622-
return d.ordinal ? d3.format('.0s') : d3.format('.3s');
622+
return d.ordinal ? function() {return '';} : d3.format('.3s');
623623
}
624624

625625
axisExtentTopText.enter()
-249 Bytes
Loading

0 commit comments

Comments
 (0)