Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
If a polar series with drawType of RangeColumn has a point where the "high" and "low" values are identical it seems to render as if the low is 0 rather than rendering a column with no height.
I've modified one of your examples here to demonstrate. I've modified the points for Nov and Dec - the point for Nov has a small difference between its high and low values (10.2 and 10.1). The point for Dec has the same value for high and low (10.1) and as you can see on the resulting chart it plots as if the low for the range was 0.
Looking at the code in polar-series.js I can see that for some reason if startValue equals endValue it sets the radius to 0 (whilst innerRadius is still based off startValue) which seems to be the cause of the bug.
Note that a standard RangeColumn series behaves as expected - i.e. given the same data it would plot a column range with no height (so nothing would be visible for that column).