Mike Bostock

Results 751 comments of Mike Bostock

Did you tell Cubism that your domain ranges from 0-100 by setting [horizon.scale](https://github.com/square/cubism/wiki/Horizon#wiki-scale)?

Er, sorry, I meant [horizon.extent](https://github.com/square/cubism/wiki/Horizon#wiki-extent).

One obvious mistake is that months are zero-based in JavaScript (yes, srsly); so October 9, 2012 is new Date(2012, 9, 9). Also I would look at my [Cubism talk slides](http://bost.ocks.org/mike/cubism/intro/)...

You could do this with metric arithmetic, although might be confusing because the displayed value in the label will still match the chart (and it sounds like you want to...

The other thing I would consider is that you can define the bands of the horizon chart by way of the extent the band colors, so you can implement semantic...

This sounds reasonable. I think if the plugin name is persisted in the collection name, we don't also need the plugin name in the event data, though.

Related #60. I would rather this be implemented as a wildcard operator, rather than adding a new query parameter.

Yes, I agree: `type(*)`. You can already get `type(prop.*)` by saying `type(prop)`.

Right, we want the event expression "event" to only return the event times—it's an existence check.

Related #59