Background Image

Knowledge base articles about
days

Search DlhSoft Team's blog for days

Sometimes you want to display predecessors using a custom string format in the Predecessors column of GanttChartDataGrid component from Gantt Chart Light Library. To transform values from the expected format to your custom display time format you can use a WPF converter class. An PredecessorFormatConverter example class is available with full C# …

How can I define a specific work schedule and/or limits for the displayed week and day in Gantt Chart Light Library? The work schedule and visible time limits can be set up using these properties: Working|Week|Start Visible|Day|Finish Any combination of the columns above is permitted, generating properties such as WorkingWeekStart, WorkingW…

If you need to define a custom column displaying and allowing the end user to edit a task duration in days in Gantt Chart Library for WPF or Project Management Library for WPF you can do it by using the following code (C#), applicable within our Custom Data Binding sample application: // Task class public class CustomTaskItem : INotifyPropertyChanged { …

If you need to define a custom column displaying and allowing the end user to edit a task duration in days in Gantt Chart Library for Windows Forms you can do it by using the following code, applicable to standard tasks within our Get Started sample application: // Task class public class MyTask : INotifyPropertyChanged { [...] …

How can I specify a special day of the week as nonworking time within a Gantt Chart control from Gantt Chart Light Library? For example, usually at museums both Saturday and Sunday are working days, and only Monday is defined as nonworking time. The WorkingWeekStart and -Finish properties of the component are useful when the nonworking days are at…