heavysixer / d4

A friendly reusable charts DSL for D3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scales shouldn't auto-nice without an option to prevent it

yanofsky opened this issue · comments

Every scale created by D4 has nice() called on it

return chart[dimension].nice();

Since there is no way to un-nice a d3 scale (that I know of) there should be a way to turn this off (or prevent it from happening entirely)

this seems very reasonable, let me investigate on how to best implement this.