We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee7628a commit d834bbbCopy full SHA for d834bbb
src/plots/cartesian/axes.js
@@ -945,7 +945,7 @@ axes.calcTicks = function calcTicks(ax, opts) {
945
ax._inCalcTicks = true;
946
947
var lastVisibleHead;
948
- var hideLabe = function(tick) {
+ var hideLabel = function(tick) {
949
tick.text = ' '; // don't use an empty string here which can confuse automargin (issue 5132)
950
ax._prevDateHead = lastVisibleHead;
951
};
@@ -972,12 +972,12 @@ axes.calcTicks = function calcTicks(ax, opts) {
972
if(p > maxRange) t.periodX = maxRange;
973
if(p < minRange) t.periodX = minRange;
974
975
- hideLabe(t);
+ hideLabel(t);
976
}
977
978
979
if(tickVals[i].skipLabel) {
980
981
982
983
ticksOut.push(t);
0 commit comments