Skip to content

Commit e3b8709

Browse files
authored
Merge pull request #5583 from plotly/fixup-opacity-before-hide
Should set opacity to 1 to be visible
2 parents e182686 + 9f53c5b commit e3b8709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plots/cartesian/axes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3043,7 +3043,7 @@ axes.drawLabels = function(gd, ax, opts) {
30433043
});
30443044

30453045
if(isInside) {
3046-
thisText.style('opacity', 0); // visible
3046+
thisText.style('opacity', 1); // visible
30473047

30483048
if(ax._hideOutOfRangeInsideTickLabels) {
30493049
ax._hideOutOfRangeInsideTickLabels();

0 commit comments

Comments
 (0)