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
Generate a chart with a data point that is 1e-7 or smaller
<Chart options={{ chart: { id: "basic-bar" }, xaxis: { categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998] }, }} series={[{ name: "series-1", data: [30, 40, 45, 50, 49, 60, 70, 1e-7] }]} type="bar" width="500" />
Chart should render
Chart crashes
https://codesandbox.io/p/sandbox/musing-water-56gs7n?file=%2Fsrc%2F_app.js%3A23%2C7
apexcharts.js/src/modules/Range.js
Line 174 in 841e5f0
0
1e-7
apexcharts.js/src/utils/Utils.js
Line 154 in 841e5f0
The text was updated successfully, but these errors were encountered:
Update - just saw #4909
Sorry, something went wrong.
fixed by #4909
No branches or pull requests
Description
Steps to Reproduce
Generate a chart with a data point that is 1e-7 or smaller
Expected Behavior
Chart should render
Actual Behavior
Chart crashes
Screenshots
Reproduction Link
https://codesandbox.io/p/sandbox/musing-water-56gs7n?file=%2Fsrc%2F_app.js%3A23%2C7
My Research
apexcharts.js/src/modules/Range.js
Line 174 in 841e5f0
0
1e-7
down to 0:apexcharts.js/src/utils/Utils.js
Line 154 in 841e5f0
The text was updated successfully, but these errors were encountered: