We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f6ab1e commit c76214cCopy full SHA for c76214c
src/plots/cartesian/axes.js
@@ -2922,7 +2922,10 @@ axes.drawZeroLine = function(gd, ax, opts) {
2922
zl.attr('transform', opts.transFn)
2923
.attr('d', opts.path)
2924
.call(Color.stroke, ax.zerolinecolor || Color.defaultLine)
2925
- .style('stroke-width', Drawing.crispRound(gd, ax.zerolinewidth, ax._gw || 1) + 'px');
+ .style('stroke-width', Drawing.crispRound(gd, ax.zerolinewidth, ax._gw || 1) + 'px')
2926
+ .style(VISIBLE);
2927
+
2928
+ hideCounterAxisInsideTickLabels(ax);
2929
};
2930
2931
/**
@@ -3105,10 +3108,7 @@ axes.drawLabels = function(gd, ax, opts) {
3105
3108
{ K: 'gridline', L: 'path' },
3106
3109
{ K: 'zeroline', L: 'path' },
3107
3110
{ K: 'tick', L: 'path' },
- { K: 'tick', L: 'text' },
- { K: 'tick2', L: 'text' },
- { K: 'tick2', L: 'path' },
3111
- { K: 'divider', L: 'path' }
+ { K: 'tick', L: 'text' }
3112
3113
].forEach(function(e) {
3114
var isX = ax._id.charAt(0) === 'x';
0 commit comments