I have been working on integrating a plotly pie chart into my website. In order to make the iframe responsive, I decided to utilize this specific tool to generate the necessary html/css. While the chart appears satisfactory on a laptop screen, it is barely visible when viewing it on my phone in portrait mode. How can I adjust the code so that the pie chart is large and clear on any type of screen?
This is the current code being used:
<style>.embed-container { position: relative; padding-bottom: 56.25%;
height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe,
.embed-container object, .embed-container embed { position: absolute;
top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'>
<iframe frameborder='0' scrolling='no'
src='//plot.ly/~bluprince13/3.embed?autosize=true&link=false&modebar=false&width=100%'></iframe></div>
View the screenshot for reference here: https://i.sstatic.net/Z0Lm4.jpg