How to render gantt fit to the browser window
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,
CSHTML
<style type="text/css"> html, body { height: 100%; padding: 0px; margin: 0px; } #GanttContainer { position: absolute; } </style> <body> @(Html.EJ().Gantt("GanttContainer") //.. .SizeSettings(ss => { ss.Width("100%"); ss.Height("100%"); }) .Datasource(ViewBag.datasource) ) </body>
The Gantt control with 100% height and width is available in following link.
Link: http://mvc.syncfusion.com/demos/web/Projecttracker/Projecttracker/Index