Jeremy Wildfire

Results 52 comments of Jeremy Wildfire

Might be the biggest gap right now - would be good to do this soonish.

Bumping out of v1.8.0, but might be worth revisiting later. [Current implementation](https://github.com/RhoInc/Webcharts/blob/v1.7.2-dev/src/chart/init.js#L3) using a second `test` parameter in the `.init()` functions is working well for now.

Closing - feel free to re-open with comment if you disagree @samussiah?

Thinking this would be a mark-specific setting, so adding the new plugin label

Not sure the best way to address this ... might be ok as is ... maybe we should throw a warning when split values are missing?

Note that there are 3 points, but only 1 bar in period 7. ![image](https://user-images.githubusercontent.com/3680095/69077325-23889a00-0a14-11ea-8733-51028c3a266e.png)

Curious how this works in other libraries (like data tables). I see 2 options to address this off the top of my head: - Add an option to specify type...

Also, Not a huge deal, but I'm tempted to remove the bug label here, since the current behavior is expected.

[Recent commits](https://github.com/RhoInc/safety-results-over-time/pull/20) in results over time renderer make progress towards this goal.

Right now you have to do something gross like this: ``` myChart.on("layout",function(){ var chart=this; this.controls.wrap .select(".control-group").select("select") .on("change",function(){ var value = d3.select(this).property("value"); chart.config.marks[0].per[0]=value chart.config.x.column=value chart.draw() }) }) ```