You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had some trouble with the resizing function of your gantt-component. My problem was that I included it inside an another component so the resizing function that made use of the total window height failed with an invalid height. If someone else is facing this issue during integrating you can use the following code snippet, which will calculate the height of the gantt component based on the parent workspace container instead of the window. All you have to ensure then is that this container has a fixed height (or a height of 100% for example).
(inside gant.html you fund workspace div element and then apply a height on it, for example:)
Hello,
Had some trouble with the resizing function of your gantt-component. My problem was that I included it inside an another component so the resizing function that made use of the total window height failed with an invalid height. If someone else is facing this issue during integrating you can use the following code snippet, which will calculate the height of the gantt component based on the parent workspace container instead of the window. All you have to ensure then is that this container has a fixed height (or a height of 100% for example).
(inside gant.html you fund workspace div element and then apply a height on it, for example:)
<div id="workSpace" style="padding:0px; height:100%;...></div>
(inside ganttMaster.js replace resize callback function inside init function with:)
The text was updated successfully, but these errors were encountered: