diff --git a/uwp/Gantt/Appearance.md b/uwp/Gantt/Appearance.md index ca5ef203..669e967d 100644 --- a/uwp/Gantt/Appearance.md +++ b/uwp/Gantt/Appearance.md @@ -1,15 +1,15 @@ --- layout: post -title: Appearance in UWP SfGantt | Syncfusion -description: Learn about Appearance support in Syncfusion UWP SfGantt using visual styling options and custom templates for task bars, parent tasks. +title: Appearance in UWP Gantt Chart | Syncfusion +description: Learn about Appearance support in Syncfusion UWP Gantt Chart using visual styling options and custom templates for task bars, parent tasks. platform: uwp control: SfGantt documentation: ug --- -# Appearance in UWP SfGantt +# Appearance in UWP Gantt Chart -The Gantt control provides options to customize the look and feel of the task visual in the Gantt chart. +The control provides options to customize the look and feel of the task visual. **Visual customization** The colors of parent taskbar, taskbar, milestone, and progress bar can be customized using the following properties: diff --git a/uwp/Gantt/CriticalPath.md b/uwp/Gantt/CriticalPath.md index 819e3693..546b3ffe 100644 --- a/uwp/Gantt/CriticalPath.md +++ b/uwp/Gantt/CriticalPath.md @@ -1,15 +1,15 @@ --- layout: post -title: Critical Path in UWP SfGantt | Syncfusion -description: Learn about CriticalPath support in Syncfusion UWP SfGantt, critical task visualization and critical path styling options. +title: Critical Path in UWP Gantt Chart | Syncfusion +description: Learn about CriticalPath support in Syncfusion UWP Gantt Chart, critical task visualization and critical path styling options. platform: uwp control: SfGantt documentation: ug --- -# Critical Path in UWP SfGantt +# Critical Path in UWP Gantt Chart -Critical path is a chain of linked critical tasks that defines the finish date of the project. It can be highlighted by enabling the [`HighlightCriticalTasks`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_HighlightCriticalTasksProperty) property in SfGantt as demonstrated in the following code sample. +Critical path is a chain of linked critical tasks that defines the finish date of the project. It can be highlighted by enabling the [`HighlightCriticalTasks`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_HighlightCriticalTasksProperty) property as demonstrated in the following code sample. {% tabs %} diff --git a/uwp/Gantt/Events.md b/uwp/Gantt/Events.md index 2c98e1e4..046a7108 100644 --- a/uwp/Gantt/Events.md +++ b/uwp/Gantt/Events.md @@ -1,13 +1,13 @@ --- layout: post -title: Events in UWP SfGantt | Syncfusion -description: Learn about Events support in Syncfusion UWP SfGantt, including task interactions, editing operations, scheduling changes, and user actions. +title: Events in UWP Gantt Chart | Syncfusion +description: Learn about Events support in Syncfusion UWP Gantt Chart, including task interactions, editing operations, scheduling changes, and user actions. platform: uwp control: SfGantt documentation: ug --- -# Events in UWP SfGantt +# Events in UWP Gantt Chart **BeginCellEdit** diff --git a/uwp/Gantt/Getting-Started.md b/uwp/Gantt/Getting-Started.md index d86ae30e..8affb377 100644 --- a/uwp/Gantt/Getting-Started.md +++ b/uwp/Gantt/Getting-Started.md @@ -1,15 +1,15 @@ --- layout: post -title: Getting Started with UWP SfGantt | Syncfusion -description: Learn how to get started with the Syncfusion UWP SfGantt control. Explore setup, features, examples, and customization options. +title: Getting Started with UWP Gantt Chart | Syncfusion +description: Learn how to get started with the Syncfusion UWP Gantt Chart control. Explore setup, features, examples, and customization options. platform: uwp control: SfGantt documentation: ug --- -# Getting Started with UWP SfGantt +# Getting Started with UWP Gantt Chart -This section explains how to create and configure a simple Gantt application. +This section explains how to create and configure a simple UWP Gantt Chart application. ## Referencing Essential Studio components in your solution @@ -31,7 +31,7 @@ In the Add Reference window, browse and choose the reference assembly from the f ![Adding UWP Gantt assembly reference in project](SfGantt_images/Gantt_dll_reference.jpeg) -The following list of assemblies should be added as references to use the Gantt control in applications. +The following list of assemblies should be added as references to use the UWP Gantt Chart control in applications. @@ -47,7 +47,7 @@ Description Syncfusion.SfGantt.UWP @@ -63,7 +63,7 @@ Dependent assembly for Syncfusion.SfGrid.UWP. Syncfusion.SfGrid.UWP @@ -92,7 +92,7 @@ Contains classes that handles tab control.
-Contains classes that handles all the operations in Gantt. +Contains classes that handles all the operations in UWP Gantt Chart.
-Contains classes that handles all UI operations of tree grid view in the Gantt. +Contains classes that handles all UI operations of tree grid view in the UWP Gantt Chart.
-## Adding SfGantt manually +## Adding UWP Gantt Chart manually 1. After adding the required assembly references to the project as discussed in the previous section, add the “Syncfusion.UI.Xaml.Gantt” namespace to the application as shown in the following code sample. @@ -112,7 +112,7 @@ using Syncfusion.UI.Xaml.Gantt; {% endtabs %} -2. Instantiate the Gantt as shown in the following code sample. +2. Instantiate the UWP Gantt Chart as shown in the following code sample. {% tabs %} @@ -130,9 +130,9 @@ SfGantt sfGantt = new SfGantt(); {% endtabs %} -## Adding SfGantt from toolbox +## Adding UWP Gantt Chart from toolbox -Drag the SfGantt control from the toolbox to your application. +Drag the UWP Gantt Chart control from the toolbox to your application. ![Loading UWP Gantt control to toolbox page](SfGantt_images/Tool_Box.jpeg) @@ -144,7 +144,7 @@ Now, the “Syncfusion Controls for UWP XAML” reference will be added to the a ## Creating data model -Create a collection of TaskDetails objects to populate a task in SfGantt as shown in the following code sample. +Create a collection of TaskDetails objects to populate a task as shown in the following code sample. {% highlight C# %} @@ -282,7 +282,7 @@ public class ProjectTrackerViewModel ## Binding data -To bind the data source of the SfGantt, set the [`ItemsSource`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ItemsSource) property as shown in the following code sample. +To bind the data source, set the [`ItemsSource`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ItemsSource) property as shown in the following code sample. {% tabs %} @@ -354,7 +354,7 @@ this.Content = sfGantt; Sorting can be enabled using the [`AllowSorting`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_AllowSorting) property. The sorting functionality is used to arrange the tasks in ascending or descending order based on a column. -The following code sample demonstrates how to enable sorting in the Gantt control. +The following code sample demonstrates how to enable sorting in the UWP Gantt Chart. {% tabs %} @@ -391,7 +391,7 @@ this.Content = sfGantt; Editing can be enabled using the [`AllowEditing`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_AllowEditing) property. You can edit cells and drag or resize the task bar or progress bar in chart view. The drag-and-drop functionality establishes the relationship between two tasks. -The following code sample demonstrates how to enable editing in the Gantt control. +The following code sample demonstrates how to enable editing in the UWP Gantt Chart. {% tabs %} @@ -421,7 +421,7 @@ N> Editing is not supported on Windows Phone devices. ## Task relationships -You can visualize the relationship between two tasks in the Gantt. These relationships are categorized into four types based on the start and finish dates of the tasks. +You can visualize the relationship between two tasks. These relationships are categorized into four types based on the start and finish dates of the tasks. * Start to Start(SS): You cannot start a task until the other task also starts. * Start to Finish(SF): You cannot finish a task until the other task finishes. @@ -470,7 +470,7 @@ Planning[3].Predecessors.Add(new TaskRelationship() ### Predecessor offset -In Gantt, the predecessor [`Offset`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.TaskRelationship.html#Syncfusion_UI_Xaml_Gantt_TaskRelationship_Offset) can be defined with the day duration unit. +The predecessor [`Offset`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.TaskRelationship.html#Syncfusion_UI_Xaml_Gantt_TaskRelationship_Offset) can be defined with the day duration unit. The following code sample demonstrates how to define offset time to the predecessor. @@ -506,9 +506,9 @@ ImplementationModule1Child[4].Predecessors.Add(new TaskRelationship ## Resources -In the Gantt control, you can display and assign the resource for every task. +In the UWP Gantt Chart, you can display and assign the resource for every task. -1. Create a resource collection to be displayed in Gantt. +1. Create a resource collection to be displayed in UWP Gantt Chart. {% highlight C# %} @@ -588,7 +588,7 @@ public ObservableCollection GetData() ## Non-working days -This functionality is used to highlight and customize the weekends in the Gantt control. By default, Saturday and Sunday are considered as weekends. +This functionality is used to highlight and customize the weekends. By default, Saturday and Sunday are considered as weekends. * [`ShowNonWorkingDays`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ShowNonWorkingDays): Enables or disables the non-working days. * [`NonWorkingDays`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_NonWorkingDays): Customizes the weekends. diff --git a/uwp/Gantt/Holidays.md b/uwp/Gantt/Holidays.md index d618bca0..a06c6c67 100644 --- a/uwp/Gantt/Holidays.md +++ b/uwp/Gantt/Holidays.md @@ -1,17 +1,17 @@ --- layout: post -title: Holidays in UWP SfGantt | Syncfusion -description: Learn about Holidays support in Syncfusion UWP SfGantt using GanttHoliday and the Holidays collection to visualize non-working days in the project timeline. +title: Holidays in UWP Gantt Chart | Syncfusion +description: Learn about Holidays support in Syncfusion UWP Gantt Chart using GanttHoliday and the Holidays collection to visualize non-working days in the project timeline. platform: uwp control: SfGantt documentation: ug --- -# Holidays in UWP SfGantt +# Holidays in UWP Gantt Chart -The holidays support is used to highlight the non-working days in the Gantt chart. +The holidays support is used to highlight the non-working days in the UWP Gantt Chart. -The holidays can be specified in a task using the [`Holidays`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_Holidays) property in the SfGantt, which holds a collection of [`GanttHoliday`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_Holidays). +The holidays can be specified in a task using the [`Holidays`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_Holidays) property, which holds a collection of [`GanttHoliday`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_Holidays). The following properties in the [`GanttHoliday`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_Holidays) are used to define the holidays: @@ -65,4 +65,4 @@ this.Content = sfGantt; ![Holidays](SfGantt_images/Holidays.png) -N> To highlight the holidays in the Gantt chart, the ['ShowNonWorkingDays'](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ShowNonWorkingDays) property must be enabled. +N> To highlight the holidays in the UWP Gantt Chart, the ['ShowNonWorkingDays'](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ShowNonWorkingDays) property must be enabled. diff --git a/uwp/Gantt/Localization.md b/uwp/Gantt/Localization.md index 2df9f249..4224b0b8 100644 --- a/uwp/Gantt/Localization.md +++ b/uwp/Gantt/Localization.md @@ -1,15 +1,15 @@ --- layout: post -title: Localization in UWP SfGantt | Syncfusion -description: Learn about Localization support in Syncfusion UWP SfGantt using culture-specific resources and localization settings. +title: Localization in UWP Gantt Chart | Syncfusion +description: Learn about Localization support in Syncfusion UWP Gantt Chart using culture-specific resources and localization settings. platform: uwp control: SfGantt documentation: ug --- -# Localization in UWP SfGantt +# Localization in UWP Gantt Chart -Localization is the process of translating the application resources into different languages for specific cultures. You can localize the SfGantt by adding a resource file. The application culture can be changed by setting the `PrimaryLanguageOverride` in the MainPage() constructor. +Localization is the process of translating the application resources into different languages for specific cultures. You can localize the UWP Gantt Chart by adding a resource file. The application culture can be changed by setting the `PrimaryLanguageOverride` in the MainPage() constructor. The following code sample demonstrates how to configure the application culture to French language. @@ -23,7 +23,7 @@ public MainPage() {% endhighlight %} {% endtabs %} -To localize the SfGantt based on `PrimaryLanguageOverride` using resource files, use the following steps: +To localize the UWP Gantt Chart based on `PrimaryLanguageOverride` using resource files, use the following steps: 1. Right-click the project, click **Add**, click **New Folder**, and then name the folder **Resources**. 2. Right-click the **Resources** folder, click **Add**, click **New Folder**, and then name the folder **[culture name]**. The culture name indicates name of the language and country. @@ -38,8 +38,8 @@ For example, you will have to give name as **fr-FR** for French culture. 5. Add the Name/Value pair in Resource Designer of **Syncfusion.SfGantt.UWP.Resources.resw** file, and change the corresponding value to the corresponding culture. -You can get the SfGantt’s keys from the default resource [Syncfusion.SfGantt.UWP.Resources.resw](http://www.syncfusion.com/downloads/support/directtrac/general/ze/Syncfusion.SfGantt.UWP.Resources845531575.zip). +You can get the localization keys from the default resource [Syncfusion.SfGantt.UWP.Resources.resw](http://www.syncfusion.com/downloads/support/directtrac/general/ze/Syncfusion.SfGantt.UWP.Resources845531575.zip). ![FinalOutput](Localization_images/FinalOutput.png) -You can download [the sample](http://www.syncfusion.com/downloads/support/directtrac/general/ze/SfGantt_Localization1607055000.zip) for localizing the Gantt. +You can download [the sample](http://www.syncfusion.com/downloads/support/directtrac/general/ze/SfGantt_Localization1607055000.zip) for localization. diff --git a/uwp/Gantt/Overview.md b/uwp/Gantt/Overview.md index 2ede9ab0..28323d11 100644 --- a/uwp/Gantt/Overview.md +++ b/uwp/Gantt/Overview.md @@ -1,15 +1,15 @@ --- layout: post -title: About Syncfusion UWP SfGantt Control | Syncfusion -description: Learn about introduction of Syncfusion Essential Studio UWP SfGantt control, its elements and more details. +title: About Syncfusion UWP Gantt Chart Control | Syncfusion +description: Learn about introduction of Syncfusion Essential Studio UWP Gantt Chart control, its elements and more details. platform: uwp control: SfGantt documentation: ug --- -# About Syncfusion UWP SfGantt Control +# About Syncfusion UWP Gantt Chart Control -The Gantt control has been designed to visualize and edit the project schedule and track the project progress. It helps to organize and schedule the projects. The project schedule can be updated through interactions such as editing, dragging, and resizing. +The UWP Gantt Chart control has been designed to visualize and edit the project schedule and track the project progress. It helps to organize and schedule the projects. The project schedule can be updated through interactions such as editing, dragging, and resizing. ![Overview](SfGantt_images/Overview.jpeg) diff --git a/uwp/Gantt/Scrolling.md b/uwp/Gantt/Scrolling.md index fe15e4cd..46203623 100644 --- a/uwp/Gantt/Scrolling.md +++ b/uwp/Gantt/Scrolling.md @@ -1,17 +1,17 @@ --- layout: post -title: Scrolling in UWP SfGantt | Syncfusion -description: Learn about Scrolling support in Syncfusion UWP SfGantt using built-in scrolling features, including scrolling. +title: Scrolling in UWP Gantt Chart | Syncfusion +description: Learn about Scrolling support in Syncfusion UWP Gantt Chart using built-in scrolling features, including scrolling. platform: uwp control: SfGantt documentation: ug --- -# Scrolling in UWP SfGantt +# Scrolling in UWP Gantt Chart ## Scroll to visible region -The [`BringTaskOnVerticalScroll`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_BringTaskOnVerticalScroll) property in the SfGantt enables you to scroll to the visible task region when the Gantt chart is vertically scrolled. +The [`BringTaskOnVerticalScroll`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_BringTaskOnVerticalScroll) property enables you to scroll to the visible task region when the Chart is vertically scrolled. The following code sample demonstrates how to enable the [`BringTaskOnVerticalScroll`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_BringTaskOnVerticalScroll) property. @@ -42,9 +42,9 @@ this.Content = sfGantt; ## Scroll to particular region -You can scroll the Gantt chart programmatically using the [`ScrollGanttTo`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ScrollGanttTo_System_Nullable_System_DateTime__System_Nullable_System_Int32__) method. This method is only available from code-behind; it cannot be invoked from XAML. +You can scroll the UWP Gantt Chart programmatically using the [`ScrollGanttTo`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ScrollGanttTo_System_Nullable_System_DateTime__System_Nullable_System_Int32__) method. This method is only available from code-behind; it cannot be invoked from XAML. -The following parameters allow users to scroll the Gantt chart programmatically: +The following parameters allow users to scroll the UWP Gantt Chart programmatically: * `date` : Specifies date to scroll horizontally. Pass `null` to skip horizontal scrolling. * `index` : Specifies row index to scroll vertically. Pass `null` to skip vertical scrolling. diff --git a/uwp/Gantt/Timescale.md b/uwp/Gantt/Timescale.md index 7aceafed..dd4c4f65 100644 --- a/uwp/Gantt/Timescale.md +++ b/uwp/Gantt/Timescale.md @@ -1,13 +1,13 @@ --- layout: post -title: Timescale in UWP SfGantt | Syncfusion -description: Learn about Timescale support in Syncfusion UWP SfGantt, including timescale tiers, intervals, label formats, cell sizing. +title: Timescale in UWP Gantt Chart | Syncfusion +description: Learn about Timescale support in Syncfusion UWP Gantt Chart, including timescale tiers, intervals, label formats, cell sizing. platform: uwp control: SfGantt documentation: ug --- -# Timescale in UWP SfGantt +# Timescale in UWP Gantt Chart This section provides an overview on the features of timescale. The following properties are used for configuring the timescale in the [`TimescaleSettings`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.TimescaleSettings.html) class: diff --git a/uwp/Gantt/Validation-Modes.md b/uwp/Gantt/Validation-Modes.md index ac4692cb..af593e70 100644 --- a/uwp/Gantt/Validation-Modes.md +++ b/uwp/Gantt/Validation-Modes.md @@ -1,15 +1,15 @@ --- layout: post -title: Validation Modes in UWP SfGantt | Syncfusion -description: Learn about Validation Modes support in Syncfusion UWP SfGantt using Manual and Auto validation modes to manage task dates, dependencies, and non-working days. +title: Validation Modes in UWP Gantt Chart | Syncfusion +description: Learn about Validation Modes in Syncfusion UWP Gantt Chart, including Manual and Auto modes for managing task dates, dependencies, and non-working days. platform: uwp control: SfGantt documentation: ug --- -# Validation Modes in UWP SfGantt +# Validation Modes in UWP Gantt Chart -The Gantt control provides support to control task scheduling. The start and finish dates of a task can be validated automatically or manually. The following validation modes can be set to the [`ValidationMode`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ValidationMode) property in SfGantt: +The UWP Gantt Chart provides support to control task scheduling. The start and finish dates of a task can be validated automatically or manually. The following validation modes can be set to the [`ValidationMode`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Gantt.SfGantt.html#Syncfusion_UI_Xaml_Gantt_SfGantt_ValidationMode) property: * `Manual`: Allows users to control task scheduling; the start and finish dates are preserved as set by the user and are not recalculated when predecessors or non-working days change. The user is responsible for tracking the schedule of the task. * `Auto`: Calculates the start and finish dates of a task based on its task dependencies (predecessors) and non-working days. When a predecessor moves or its progress changes, dependent tasks are rescheduled automatically. diff --git a/uwp/Kanban-Board/Cards.md b/uwp/Kanban-Board/Cards.md index 9b886806..506f0abb 100644 --- a/uwp/Kanban-Board/Cards.md +++ b/uwp/Kanban-Board/Cards.md @@ -1,13 +1,13 @@ --- layout: post -title: Cards in UWP SfKanban | Syncfusion -description: Learn about Cards support in Syncfusion UWP SfKanban, card templates, custom data models, card appearance settings, and template selectors. +title: Cards in UWP Kanban Board | Syncfusion +description: Learn about Cards support in Syncfusion UWP Kanban Board, card templates, custom data models, card appearance settings, and template selectors. platform: uwp control: SfKanban documentation: ug --- -# Cards in UWP SfKanban +# Cards in UWP Kanban Board The default elements of a card can be customized using the below properties of [`KanbanModel`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.KanbanModel.html). @@ -78,7 +78,7 @@ sfKanban.IndicatorColorPalette = indicatorColorPalette; ![Card customization in UWP SfKanban](SfKanban_images/CardCustomization.png) -## Customizing Kanban cards +## Customizing UWP Kanban Board cards The [`CardStyle`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_CardStyle) property customizes the kanban cards. The following properties of [`CardStyle`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_CardStyle) are used to customize its appearance: diff --git a/uwp/Kanban-Board/Events.md b/uwp/Kanban-Board/Events.md index a27c7b86..271caf9e 100644 --- a/uwp/Kanban-Board/Events.md +++ b/uwp/Kanban-Board/Events.md @@ -1,13 +1,13 @@ --- layout: post -title: Events in UWP SfKanban | Syncfusion -description: Learn about Events support in Syncfusion SfKanban, including card interactions, selection changes, and drag-and-drop operations. +title: Events in UWP Kanban Board | Syncfusion +description: Learn about Events support in Syncfusion UWP Kanban Board, including card interactions, selection changes, and drag-and-drop operations. platform: uwp control: SfKanban documentation: ug --- -# Events in UWP SfKanban +# Events in UWP Kanban Board ## CardTapped diff --git a/uwp/Kanban-Board/Getting-started.md b/uwp/Kanban-Board/Getting-started.md index 21aa9b68..875ec652 100644 --- a/uwp/Kanban-Board/Getting-started.md +++ b/uwp/Kanban-Board/Getting-started.md @@ -1,14 +1,14 @@ --- layout: post -title: Getting Started with UWP SfKanban | Syncfusion -description: Learn how to get started with the Syncfusion UWP SfKanban control. Explore setup, features, examples, and customization options. +title: Getting Started with UWP Kanban Board | Syncfusion +description: Learn how to get started with the Syncfusion UWP Kanban Board control. Explore setup, features, examples, and customization options. platform: uwp control: SfKanban documentation: ug --- -# Getting Started with UWP SfKanban +# Getting Started with UWP Kanban Board -The following section provides an assistance to create a simple Kanban application and to configure it. +The following section provides an assistance to create a simple UWP Kanban Board application and to configure it. ## Referencing Essential Studio Components in your Solution @@ -31,9 +31,9 @@ In the Add Reference window, browse and choose the reference assembly from the f Installed location\Syncfusion\Essential Studio\Installed version\Assemblies for Universal Windows\10.0\Syncfusion.SfKanban.UWP.dll -## Create a simple Kanban +## Create a simple UWP Kanban Board -In this walkthrough, you will create a new application that contains the SfKanban which covers the following topics. +In this walkthrough, you will create a new application that contains the UWP Kanban Board which covers the following topics. * Adding SfKanban * Create data model @@ -60,7 +60,7 @@ using Syncfusion.UI.Xaml.Kanban; {% endtabs %} -3. Create an instance of SfKanban control. +3. Create an instance of UWP Kanban Board control. {% tabs %} @@ -80,7 +80,7 @@ SfKanban kanban = new SfKanban(); ### Adding SfKanban from toolbox -Drag and drop the Kanban control from the toolbox to your application. +Drag and drop the UWP Kanban Board control from the toolbox to your application. ![Adding SfKanban from toolbox](SfKanban_images/new_kanban_img3.jpeg) @@ -95,7 +95,7 @@ Now the “Syncfusion Controls for UWP XAML” reference is added to the applica ### Create data model -You need to create a collection of KanbanModel objects for populating SfKanban. +You need to create a collection of KanbanModel objects for populating UWP Kanban Board. {% highlight c# %} @@ -187,7 +187,7 @@ You need to create a collection of KanbanModel objects for populating SfKanban. ### Binding data -In order to bind the data source of the SfKanban, set `ItemsSource` property as shown below. +In order to bind the data source of the UWP Kanban Board, set `ItemsSource` property as shown below. {% tabs %} @@ -217,7 +217,7 @@ SfKanban kanban = new SfKanban() By default, we need to define the columns manually by adding the KanbanColumn object to the [`Columns`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_Columns) collection property in SfKanban. -The `ItemsSource` which was bound to the Kanban will be added to the respective columns using the `ColumnMappingPath` property in SfKanban and the `Categories` property in KanbanColumn. +The `ItemsSource` which was bound to the UWP Kanban Board will be added to the respective columns using the `ColumnMappingPath` property in UWP Kanban Board and the `Categories` property in KanbanColumn. We need to set the required property name to ColumnMappingPath which will be essential to add the data to the respective columns. diff --git a/uwp/Kanban-Board/Overview.md b/uwp/Kanban-Board/Overview.md index fe313784..6392769d 100644 --- a/uwp/Kanban-Board/Overview.md +++ b/uwp/Kanban-Board/Overview.md @@ -1,15 +1,15 @@ --- layout: post -title: About Syncfusion UWP SfKanban Control | Syncfusion -description: Learn about introduction of Syncfusion Essential Studio SfKanban control, its elements and more details. +title: About Syncfusion UWP Kanban Board Control | Syncfusion +description: Learn about introduction of Syncfusion Essential Studio UWP Kanban Board control, its elements and more details. platform: uwp control: SfKanban documentation: ug --- -# About Syncfusion UWP SfKanban Control +# About Syncfusion UWP Kanban Board Control -The Kanban control is an efficient way to visualize a workflow at each stage of completion. Kanban helps to define elegant planning and clear visualization of work progression. SfKanban also provides many features that are used to monitor the progressing tasks in the software development cycle. +The UWP Kanban Board control is an efficient way to visualize a workflow at each stage of completion. Kanban helps to define elegant planning and clear visualization of work progression. Its also provides many features that are used to monitor the progressing tasks in the software development cycle. ![Overview of SfKanban in UWP](SfKanban_images/SfKanban_img1.png) diff --git a/uwp/Kanban-Board/Placeholderstyle.md b/uwp/Kanban-Board/Placeholderstyle.md index b6f3e548..0aed5246 100644 --- a/uwp/Kanban-Board/Placeholderstyle.md +++ b/uwp/Kanban-Board/Placeholderstyle.md @@ -1,17 +1,17 @@ --- layout: post -title: Placeholder in UWP SfKanban | Syncfusion -description: Learn about Placeholder support in Syncfusion UWP SfKanban using PlaceholderStyle properties to control placeholder appearance and selected-state visuals. +title: Placeholder in UWP Kanban Board | Syncfusion +description: Learn about Placeholder support in Syncfusion UWP Kanban Board using PlaceholderStyle properties to control placeholder appearance and selected-state visuals. platform: uwp control: SfKanban documentation: ug --- -# Placeholder in UWP SfKanban +# Placeholder in UWP Kanban Board The placeholder denotes a card's new position in the [`KanbanColumn`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.KanbanColumn.html). It will appear while dragging a card over the column. -### Placeholder style +## Placeholder style [`PlaceholderStyle`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_PlaceholderStyle) property is used to customize the placeholder. The following properties are used to customize its appearance: diff --git a/uwp/Kanban-Board/Workflows.md b/uwp/Kanban-Board/Workflows.md index a6edbc56..ddfcb855 100644 --- a/uwp/Kanban-Board/Workflows.md +++ b/uwp/Kanban-Board/Workflows.md @@ -1,15 +1,15 @@ --- layout: post -title: Workflows in UWP SfKanban | Syncfusion -description: Learn about Workflows support in Syncfusion UWP SfKanban to manage allowed card transitions and enforce workflow rules across columns. +title: Workflows in UWP Kanban Board | Syncfusion +description: Learn about Workflows support in Syncfusion UWP Kanban Board to manage allowed card transitions and enforce workflow rules across columns. platform: uwp control: SfKanban documentation: ug --- -# Workflows in UWP SfKanban +# Workflows in UWP Kanban Board -A Kanban [`Workflow`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_Workflows) is a set of Category and AllowedTransitions that an item moves through its life cycle and typically represents processes within your organization. +A [`Workflow`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_Workflows) is a set of Category and AllowedTransitions that an item moves through its life cycle and typically represents processes within your organization. * [`Category`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.KanbanWorkflow.html#Syncfusion_UI_Xaml_Kanban_KanbanWorkflow_Category) – It represents a state of an item at a particular point in a specific workflow. diff --git a/uwp/Kanban-Board/column.md b/uwp/Kanban-Board/column.md index 3de608c5..0353e108 100644 --- a/uwp/Kanban-Board/column.md +++ b/uwp/Kanban-Board/column.md @@ -1,13 +1,13 @@ --- layout: post -title: Column in UWP SfKanban | Syncfusion -description: Learn about Column support in Syncfusion UWP SfKanban with category mapping, header settings, drag-and-drop support, and WIP constraints. +title: Column in UWP Kanban Board | Syncfusion +description: Learn about Column support in Syncfusion UWP Kanban Board with category mapping, header settings, drag-and-drop support, and WIP constraints. platform: uwp control: SfKanban documentation: ug --- -# Column in UWP SfKanban +# Column in UWP Kanban Board ## Customizing column size diff --git a/uwp/Kanban-Board/swimlane.md b/uwp/Kanban-Board/swimlane.md index 6909480a..b3ca0e21 100644 --- a/uwp/Kanban-Board/swimlane.md +++ b/uwp/Kanban-Board/swimlane.md @@ -1,12 +1,12 @@ --- layout: post -title: Swimlane in UWP SfKanban | Syncfusion -description: Learn about Swimlane support in Syncfusion UWP SfKanban using swimlane support and header customization. +title: Swimlane in UWP Kanban Board | Syncfusion +description: Learn about Swimlane support in Syncfusion UWP Kanban Board using swimlane support and header customization. platform: uwp control: SfKanban documentation: ug --- -# Swimlane in UWP SfKanban +# Swimlane in UWP Kanban Board Swimlanes are horizontal categorizations that allow you to categorize your current workflow by different projects, teams, users, or other grouping criteria. @@ -40,7 +40,7 @@ N> If there is no value assigned for the [`SwimlaneKey`](https://help.syncfusion ## Customization -SfKanban provides support to customize header, which is displayed before the swim lane group using [`SwimlaneHeaderTemplate`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_SwimlaneHeaderTemplate) property. The following code example displays image along with name. +Customize the header displayed before each swimlane group using the [`SwimlaneHeaderTemplate`](https://help.syncfusion.com/cr/uwp/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_SwimlaneHeaderTemplate) property. The following code example displays image along with name. {% highlight xaml %}