Skip to content

Commit

Permalink
Fix example data labels
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 22, 2016
1 parent 94d6d6f commit 5848a62
Showing 1 changed file with 3 additions and 21 deletions.
Expand Up @@ -5,26 +5,8 @@ define([], function() {
library : 'Custom',
tag : 'svg',
keywords : 'others',
groups : {
x : {
label : 'Column labels',
type : 'data_column',
is_label : true,
is_auto : true,
is_unique : true
},
y : {
label : 'Row labels',
type : 'data_column',
is_label : true,
is_auto : true,
is_unique : true
},
z : {
label : 'Observation',
type : 'data_column',
is_numeric : true
}
}
groups : { x : { type : 'data_column', is_numeric : true, label : 'Bubble x-position' },
y : { type : 'data_column', is_numeric : true, label : 'Bubble y-position' },
z : { type : 'data_column', is_numeric : true, label : 'Bubble size' } }
}
});

0 comments on commit 5848a62

Please sign in to comment.