Skip to content

Commit aca7a92

Browse files
committed
Set default so full domain doesn't set to auto
1 parent afba178 commit aca7a92

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/plots/cartesian/tick_value_defaults.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ module.exports = function handleTickValueDefaults(containerIn, containerOut, coe
2525
_dtick ? 'linear' :
2626
'auto';
2727
var tickmode = coerce(prefix + 'tickmode', tickmodeDefault);
28-
29-
if(tickmode === 'auto' || tickmode === 'sync') {
28+
if(tickmode === 'auto' || tickmode === 'sync' || tickmode === 'full domain') {
3029
coerce(prefix + 'nticks');
3130
} else if(tickmode === 'linear') {
3231
// dtick is usually a positive number, but there are some

0 commit comments

Comments
 (0)