From e9b745dc2398afb4595e49863a5539306fc403ac Mon Sep 17 00:00:00 2001 From: Sanjay Vikram Mariappan <154953240+sanjayvikramsf4373@users.noreply.github.com> Date: Fri, 13 Mar 2026 13:35:28 +0530 Subject: [PATCH] documentation(1011452):Update the API Key for the WPF Gantt Virtualization document. --- wpf/Gantt/data-virtualization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wpf/Gantt/data-virtualization.md b/wpf/Gantt/data-virtualization.md index 1aee67596..eff27ba2a 100644 --- a/wpf/Gantt/data-virtualization.md +++ b/wpf/Gantt/data-virtualization.md @@ -9,7 +9,7 @@ documentation: ug # Data Virtualization in WPF Gantt -The WPF Gantt control supports data virtualization to improve performance when working with large datasets. When virtualization is enabled, the control renders only the nodes that are currently visible in the viewport, reducing memory usage and improving scrolling responsiveness. +The WPF [GanttControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Gantt.GanttControl.html) supports data virtualization to improve performance when working with large datasets. When virtualization is enabled, the control renders only the nodes that are currently visible in the viewport, reducing memory usage and improving scrolling responsiveness. ## How virtualization Works @@ -22,7 +22,7 @@ This approach ensures optimal performance even when working with thousands of ta ## Enable Timeline Virtualization -You can enable timeline virtualization by setting the `EnableTimelineVirtualization` property to `true` in WPF `GanttControl`. +You can enable timeline virtualization by setting the `EnableTimelineVirtualization` property to `true` in WPF [GanttControl](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Gantt.GanttControl.html). {% tabs %} {% highlight xaml hl_lines="3" %} @@ -251,7 +251,7 @@ You can enable timeline virtualization by setting the `EnableTimelineVirtualizat var tempCal = 0d; if (_subItems.Count > 0) { - /// Updating the start and end date based on the chagne occur in the date of child task + /// Updating the start and end date based on the changes occur in the date of child task StartDate = _subItems.Select(c => c.StartDate).Min(); FinishDate = _subItems.Select(c => c.FinishDate).Max(); Progress = (_subItems.Aggregate(tempCal, (cur, task) => cur + task.Progress)) / _subItems.Count;