I'm trying to implement navigation arrows for stock tools using Highcharts/Highstock
with the React wrapper. This is a working example for a non React application.
My attempt with React is here. I couldn't find any documentation about those arrows. Comparing the codes, the only diference is that chart options are wrapped on a container
on the first example, but I couldn't replicate that on React.
Also, I can't find anything on documentation related to stock tools positioning on chart (bottom/top/right/left) or how to handle the minimize arrow for it. Is the only solution via CSS?
Any tips on how to implement that?
Update
I Have added
<HighchartsReact
...
containerProps={{ className: "chart" }}
/>
to my updated example, and also updated dependencies. Now everything is working fine.