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
Hi,
I think that in Logarithmic Scale documentation http://www.chartjs.org/docs/#scales-logarithmic-scale, Example Configuration is missing 'scales' in 'options'.
options: { xAxes: [{ type: 'logarithmic', position: 'bottom', ticks: { min: 1, max: 1000 } }] }
should be:
options: { scales: { xAxes: [{ type: 'logarithmic', position: 'bottom', ticks: { min: 1, max: 1000 } }] } }
The text was updated successfully, but these errors were encountered:
Fixed in #2678
Sorry, something went wrong.
Not fixed guys.
It has been changed in the docs folder, but the changes will not go live on the website until @nnnick updates it after a release.
No branches or pull requests
Hi,
I think that in Logarithmic Scale documentation http://www.chartjs.org/docs/#scales-logarithmic-scale, Example Configuration is missing 'scales' in 'options'.
options: { xAxes: [{ type: 'logarithmic', position: 'bottom', ticks: { min: 1, max: 1000 } }] }
should be:
options: { scales: { xAxes: [{ type: 'logarithmic', position: 'bottom', ticks: { min: 1, max: 1000 } }] } }
The text was updated successfully, but these errors were encountered: