2X faster development
The ultimate ASP.NET Web Forms UI toolkit to boost your development speed.
Baselines are used to represent the original start date and end date of a task, scheduled at the beginning of the project. In Gantt, it is possible to render the baseline using RenderBaseLine property and we can define the baseline color using BaselineColor property at load time. It is also possible to change this color dynamically for some task with the help of queryTaskbarInfo client side event. The following code example shows you how to enable baseline and change its line color dynamically at run time based on condition in Gantt control. <ej:Gantt ID="GanttContainer" runat="server" BaselineStartDateMapping="BaselineStartDate" BaselineEndDateMapping="BaselineEndDate" RenderBaseline="true" QueryTaskbarInfo="queryTaskbarInfo"> </ej:Gantt>
<script> function queryTaskbarInfo(args) { if (args.data.taskId == "2" || args.data.taskId == "3") args.baselineBackground = "red"; } </script>
The following screenshot shows the baseline in Gantt control. Sample link A sample to render baseline in Gantt is available in the following link, Sample |
2X faster development
The ultimate ASP.NET Web Forms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.