Skip to content

Commit

Permalink
Merge pull request #1 from apexcharts/master
Browse files Browse the repository at this point in the history
sync with base 0001
  • Loading branch information
karna48 authored Feb 26, 2021
2 parents fe2339a + 5020ef2 commit 4eeb10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charts/RangeBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class RangeBar extends Bar {
seriesName = yLbTitleFormatter(seriesName, opts)
}

if (y1 && y2) {
if (Number.isFinite(y1) && Number.isFinite(y2)) {
start = y1
end = y2

Expand Down

0 comments on commit 4eeb10b

Please sign in to comment.