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 908deec commit 884d975Copy full SHA for 884d975
1 file changed
src/plots/cartesian/axes.js
@@ -1090,7 +1090,7 @@ axes.calcTicks = function calcTicks(ax, opts) {
1090
}
1091
1092
// Determine for which ticks to draw labels
1093
- if (!ticklabelIndex) {
+ if(!ticklabelIndex) {
1094
labelTickVals = tickVals;
1095
} else {
1096
// Collect and sort all major and minor ticks, to find the minor ticks `ticklabelIndex`
@@ -1240,7 +1240,7 @@ axes.calcTicks = function calcTicks(ax, opts) {
1240
var _value = tickVals[i].value;
1241
1242
if(_minor) {
1243
- if (ticklabelIndex && labelTickVals.indexOf(tickVals[i]) !== -1) {
+ if(ticklabelIndex && labelTickVals.indexOf(tickVals[i]) !== -1) {
1244
t = setTickLabel(ax, tickVals[i]);
1245
1246
t = { x: _value };
0 commit comments