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
Show both positive and negative values using logarithmic scale on the y-axis.
ChartJS supports logarithmic scale for values that are 1 or greater. And it works fine.
However as of 30 Dec 2021, ChartJS doesn't support logarithmic scale for negative values. ChartJS doesn't show a point if there is a problem with it.
I made a crappy workaround where I clamp the problematic y-value to 1 and color the point red.
Find another javascript chart library that can do this.
Modify ChartJS with support for different scaling options.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected
Show both positive and negative values using logarithmic scale on the y-axis.
Actual
ChartJS supports logarithmic scale for values that are 1 or greater. And it works fine.
However as of 30 Dec 2021, ChartJS doesn't support logarithmic scale for negative values.
ChartJS doesn't show a point if there is a problem with it.
I made a crappy workaround where I clamp the problematic y-value to 1 and color the point red.
Solution A
Find another javascript chart library that can do this.
Solution B
Modify ChartJS with support for different scaling options.
The text was updated successfully, but these errors were encountered: