I am trying to make the Plot component responsive based on screen size but nothing seems to work. Any suggestions would be greatly appreciated! My company wants to use Plotly graphs, but I cannot seem to get the graphs to be responsive. Here is what I have for the component
his is what I have…
<Plot
data={fig.data}
config={{
displaylogo: false,
responsive: true,
}}
layout={{
…fig.layout,
autosize: true,
}}
useResizeHandler
style={{ width: “100%”, height: “100%” }}
/>