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 651fa44 commit 64646a8Copy full SHA for 64646a8
scout-ui/src/minicharts/unique.js
@@ -15,7 +15,8 @@ module.exports = VizView.extend({
15
deps: ['orderedValues'],
16
cache: false,
17
fn: function() {
18
- return _(this.model.values.sample(15))
+ // @hack for demo: show values across all types
19
+ return _(this.model.collection.parent.values.sample(15))
20
.map(function(x) {
21
return x.value;
22
})
0 commit comments