Candlestick series y axis inverted
Hi, thanks for this library!
I'm currently seeing some interesting behaviour with some sets of candle data where the y axis inverts and this is causing either the zoom to be incorrect or the candles to be drawn incorrectly.
I've forked one of the examples and reproduced the issue here
If you drag to the left, the candles and y axis are properly rendered. Removing the last candle also "fixes" the issue. I cant see anything wrong with the data for that candle so I am a little stumped.
Thanks
This happens to me also, please help
Just in case anyone else stumble upon the same thing. Definitely a bug (and quite serious one).
Until fixed in the library (if ever, as work seems to have come to halt), the following is a temporary hack that sort of works:
yExtents={d => [ Math.max(d.high, d.low), Math.min(d.high, d.low), ]}