Skip to content

Commit

Permalink
hide scatter_binned as it is broken due to vega/vega#468
Browse files Browse the repository at this point in the history
  • Loading branch information
kanitw committed Dec 6, 2015
1 parent c0a3b08 commit 28ba097
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions examples/vlexamples.ts
Expand Up @@ -22,10 +22,8 @@ const VL_SPECS = {
"name": "scatter",
"title": "A scatterplot"
},
// TODO: colored & shape scatter,
// TOOD: bubble scatter,
{
"name": "scatter_binned",
"_name": "scatter_binned",
"title": "Binned Scatterplot"
},
{
Expand Down Expand Up @@ -58,7 +56,7 @@ const VL_SPECS = {
// "title": "Table Heatmap."
// }
],
'stack': [
'Stack': [
{
"name": "stacked_area",
"title": "Stacked Area Chart"
Expand Down Expand Up @@ -95,4 +93,5 @@ const VL_SPECS = {
]
};

declare var exports;
export const VL_EXAMPLES = VL_SPECS;
4 changes: 3 additions & 1 deletion site/gallery.js
Expand Up @@ -8,7 +8,9 @@ d3.select('#vg-version').text(vg.version);
var examples = d3.keys(VL_SPECS).reduce(function(examples, groupName) {
var group = VL_SPECS[groupName];
return examples.concat(group);
}, []);
}, []).filter(function(example){
return example.name; // must contain file name to be included
});

var viz = d3.select('div.viz-list').selectAll('.viz')
.data(examples)
Expand Down
1 change: 0 additions & 1 deletion src/compiler/Model.ts
@@ -1,5 +1,4 @@
import {Spec} from '../schema/schema';
import {Bin} from '../schema/bin.schema';
import {FieldDef} from '../schema/fielddef.schema';

import {COLUMN, ROW, X, Y, COLOR, DETAIL, Channel} from '../channel';
Expand Down

0 comments on commit 28ba097

Please sign in to comment.