简体   繁体   中英

Scale d3 chart in different resolutions

We have a requirement of creating a dashboard in angular where I am using a gauge chart code from here .

My HTML file looks something like this:

<div fxLayout="row" fxLayoutAlign="space-around center" >
<div fxFlex='33%'>
    <div id="power-gauge"></div>
</div>
<div fxFlex='33%'>
    <!-- Some other chart -->
</div>
<div fxFlex='33%'>
    <!-- Some other chart -->
</div>

Now the issue is when the website is being accessed from different resolutions this gauge is not scaling properly as it has a static height and width.

Is there any way I can make it responsive.

Had to give height and width in % .Found the solution here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM