From 9f53c5bdf9b369967dd512a405811a600b77d40c Mon Sep 17 00:00:00 2001 From: archmoj Date: Thu, 8 Apr 2021 10:28:18 -0400 Subject: [PATCH] should set opacity to 1 to be visible --- src/plots/cartesian/axes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js index 25685d5e300..d2fb02d908e 100644 --- a/src/plots/cartesian/axes.js +++ b/src/plots/cartesian/axes.js @@ -3043,7 +3043,7 @@ axes.drawLabels = function(gd, ax, opts) { }); if(isInside) { - thisText.style('opacity', 0); // visible + thisText.style('opacity', 1); // visible if(ax._hideOutOfRangeInsideTickLabels) { ax._hideOutOfRangeInsideTickLabels();