Skip to content

Commit 87e3340

Browse files
committed
noskipticklabels > noSkipticklabels
1 parent 2676d24 commit 87e3340

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/plots/cartesian/tick_label_defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = function handleTickLabelDefaults(containerIn, containerOut, coe
2828
color: dfltFontColor
2929
});
3030

31-
if(!options.noskipticklabels) coerce('skipticklabels');
31+
if(!options.noSkipticklabels) coerce('skipticklabels');
3232

3333
if(!options.noAng) coerce('tickangle');
3434

src/plots/gl3d/layout/axis_defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module.exports = function supplyLayoutDefaults(layoutIn, layoutOut, options) {
4343
showGrid: true,
4444
noTickson: true,
4545
noTicklabelmode: true,
46-
noskipticklabels: true,
46+
noSkipticklabels: true,
4747
noTicklabelposition: true,
4848
noTicklabeloverflow: true,
4949
bgColor: options.bgColor,

src/plots/smith/layout_defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ function handleDefaults(contIn, contOut, coerce, opts) {
8383
}
8484

8585
handleTickLabelDefaults(axIn, axOut, coerceAxis, axOut.type, {
86-
noskipticklabels: true,
86+
noSkipticklabels: true,
8787
noAng: !isRealAxis,
8888
noExp: true,
8989
font: {

src/traces/carpet/ab_defaults.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function mimickAxisDefaults(traceIn, traceOut, fullLayout, dfltColor) {
3030
var axOut = Template.newContainer(traceOut, axName);
3131

3232
var defaultOptions = {
33-
noskipticklabels: true,
33+
noSkipticklabels: true,
3434
tickfont: 'x',
3535
id: axLetter + 'axis',
3636
letter: axLetter,

0 commit comments

Comments
 (0)