Category / Section
How to Render JavaScript Gantt Fit to the Browser Window?
1 min read
By using “sizeSettings” API we can able to fit the Gantt to the browser window.
By default, the Gantt control size will be updated according to “sizeSettings” and “isResponsive” property values when we resize the window.
When we assign width or height value in percentage Gantt control size will be updated as per parent element size.
Please refer following code snippet,
HTML
<style> html, body { height: 100%; padding: 0px; margin: 0px; } #gantt { position: absolute; } </style> <body> <div id="gantt"></div> <script type="text/javascript"> $(function () { $("#gantt").ejGantt({ dataSource: projectData, //.. sizeSettings:{ width:"100%", height:"100%" } }); }); </script> </body>
The Gantt control with 100% height/width in JS platform is available in following link.
Link: https://js.syncfusion.com/demos/web/dashboard/projecttracker/projecttracker.html