Hi. I build stacked area chart and have some problem with hover info when one of values is “0”. See screenshot for more information.
I cant see red line value on chart, because green line higher and green line value is “0” in this point.
That’s possible show values for all lines? Or just ignore zero values?
code:
chart = go.Figure() chart.add_trace(go.Scatter(x=x, y=y, hoverinfo='x+y', stackgroup='one'))
screenshot:

