I have a dash app using map using mapbox. My app is similar to the app on the dash gallery (Oil & Gas Wells) where you have a hover text box when you have a mouse hover over a well on the map and a graph in another component dynamically updates.
I was wondering if there is a way for example, to hover over the well but instead of a hover textbox, have a hover graph pop up right where the mouse is. This way i can remove the graph component in my app and create more room for my map and lose no analytic insight since I still have my graph when i hover over the point of interest.
Please let me know how I could go about doing this with the dash library.
you could also put the graph in a modal window which would appear on hover (although this might be a bit intrusive) or on click. See for example the dash-web-trader app and its source code: when you click on one of the stocks and hit the “buy/sell” button you have a modal graph which appears. The appearance of the modal window is set by css.