We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Y axis values is upper than 4 numbers (1000, 2000, etc...), the value is truncated.
Maybe you can use this fast fix is format Y value (line 418 on chart.js) and add tickFormat function :
var yAxis = d3.svg.axis().scale(y).orient(orient) .tickFormat(function(d) { return d; });
The text was updated successfully, but these errors were encountered:
Merge pull request #12 from neptooo/master
679369b
Format tick on Y axis #11
No branches or pull requests
When Y axis values is upper than 4 numbers (1000, 2000, etc...), the value is truncated.
Maybe you can use this fast fix is format Y value (line 418 on chart.js) and add tickFormat function :
The text was updated successfully, but these errors were encountered: