The fix to #32 disabled auto-nicing. The (undocumented) way of nicing scales I found is:
chart.using('lineSeries', function(line) {
line.beforeRender(function(chart) {
this.y.nice();
});
});
I'd appreciate if this could be done declaratively, like setting the Key for the Axis.
Should I take the time to implement this and send a pull request, or should I just add the workaround to the documentation?
The fix to #32 disabled auto-nicing. The (undocumented) way of nicing scales I found is:
I'd appreciate if this could be done declaratively, like setting the Key for the Axis.
Should I take the time to implement this and send a pull request, or should I just add the workaround to the documentation?