Skip to content

Commit 4b43e35

Browse files
committed
row and column default to 0 in domain attrs
1 parent 6b8d461 commit 4b43e35

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/plots/domain.js

+2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ exports.attributes = function(opts, extra) {
7676
out.row = {
7777
valType: 'integer',
7878
min: 0,
79+
dflt: 0,
7980
role: 'info',
8081
editType: opts.editType,
8182
description: [
@@ -90,6 +91,7 @@ exports.attributes = function(opts, extra) {
9091
out.column = {
9192
valType: 'integer',
9293
min: 0,
94+
dflt: 0,
9395
role: 'info',
9496
editType: opts.editType,
9597
description: [

0 commit comments

Comments
 (0)