We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 156c9c2 + e17b57e commit f2d1283Copy full SHA for f2d1283
1 file changed
components/Visualization/HorizontalBar/index.js
@@ -410,6 +410,11 @@ class HorizontalBar extends PureComponent {
410
.style('fill', fillColor);
411
});
412
413
+ this.group
414
+ .select('#xaxis')
415
+ .selectAll('.tick text')
416
+ .text(d => (valueLabelFormat ? valueLabelFormat(d) : d));
417
+
418
if (scaleType === 'log') {
419
this.group
420
.select('#xaxis')
0 commit comments