Skip to content

Commit a004028

Browse files
committed
font size setting more in line with Plotly practices + image export compat
1 parent 877b73a commit a004028

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/traces/parcoords/parcoords.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ function styleExtentTexts(selection) {
229229
.attr('text-anchor', 'middle')
230230
.style('font-family', 'monospace')
231231
.style('font-weight', 100)
232-
.style('font-size', 'x-small')
232+
.style('font-size', '10px')
233233
.style('cursor', 'default')
234234
.style('user-select', 'none');
235235
}
@@ -580,7 +580,7 @@ module.exports = function(gd, root, svg, styledData, layout, callbacks) {
580580
.selectAll('text')
581581
.style('font-family', 'monospace')
582582
.style('font-weight', 100)
583-
.style('font-size', 'x-small')
583+
.style('font-size', '10px')
584584
.style('fill', 'black')
585585
.style('fill-opacity', 1)
586586
.style('stroke', 'none')
@@ -603,7 +603,7 @@ module.exports = function(gd, root, svg, styledData, layout, callbacks) {
603603
.classed('axisTitle', true)
604604
.attr('text-anchor', 'middle')
605605
.style('font-family', 'sans-serif')
606-
.style('font-size', 'xx-small')
606+
.style('font-size', '10px')
607607
.style('cursor', 'default')
608608
.style('user-select', 'none')
609609
.style('pointer-events', 'auto');

0 commit comments

Comments
 (0)