Work Breakdown Structure in EJ 1 ASP.NET MVC Gantt
22 Mar 2018 / 1 minute to read
Work Breakdown Structure(WBS) in Gantt represents the entire project activities in various sub modules. It is used to split the large tasks into manageable small tasks. WBS value and WBS predecessor value of Gantt tasks are displayed in WBS column and WBS predecessor column. This can be enabled in Gantt by using EnableWBS
and EnableWBSPredecessor
properties. The following code example shows how to enable WBS columns in Gantt.
@(Html.EJ().Gantt("Gantt")
// ...
.EnableWBS(true)
.EnableWBSPredecessor(true)
)
@(Html.EJ().ScriptManager())
The below screenshot depicts the output of above code example.
Click here to view the online demo sample for WBS in Gantt.
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page