+
-
+
@@ -414,23 +410,23 @@ Refer to the following code example to add framework elements as node content,
+ HorizontalAlignment="Left"
+ VerticalAlignment="Center"
+ FontFamily="Segoe UI"
+ FontSize="12"
+ FontWeight="Bold"
+ Foreground="White"
+ Text="Daniel Tonini"
+ TextAlignment="Left" />
+ HorizontalAlignment="Left"
+ VerticalAlignment="Top"
+ FontFamily="Segoe UI"
+ FontSize="11"
+ FontWeight="SemiBold"
+ Foreground="White"
+ Text="Project Lead"
+ TextAlignment="Left" />
@@ -445,7 +441,7 @@ Refer to the following code example to add framework elements as node content,
-
+
{% endhighlight %}
@@ -478,9 +474,9 @@ Some basic built-in shapes are provided as ResourceDictionary. For more informat
## Position
-Position of a node is controlled by using its [`OffsetX`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_OffsetX) and [`OffsetY`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_OffsetY) properties. By default, these Offset properties represent the distance between origin of the diagram’s page and node’s center point. You may expect this Offset values to represent the distance between page origin and node’s top left corner instead of center. The [`Pivot`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_Pivot) property helps solve this problem. Default value of node’s pivot point is (0.5, 0.5), that means center of node.
+Position of a node is controlled by using its [`OffsetX`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_OffsetX) and [`OffsetY`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_OffsetY) properties. By default, these `Offset` properties represent the distance between origin of the diagram’s page and node’s center point. You may expect this Offset values to represent the distance between page origin and node’s top left corner instead of center. The [`Pivot`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_Pivot) property helps solve this problem. Default value of node’s pivot point is (0.5, 0.5), that means center of node.
-The following table explains how pivot relates Offset values with node boundaries:
+The following table explains how `Pivot` relates `Offset` values with `Node` boundaries:
| Pivot | Offset |
|---|---|
@@ -525,11 +521,11 @@ NodeViewModel node = new NodeViewModel()
Diagram provides support to flip the node.[`Flip`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_Flip) is performed to give the mirrored node of the original element.
The [`Flip`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Flip.html) types are:
-* Flip
+* **Flip**
`Flip` that involves both vertical and horizontal changes of the element.
-* VerticalFlip
+* **VerticalFlip**
`VerticalFlip` that involves changes in the vertical direction of the element.
-* HorizontalFlip
+* **HorizontalFlip**
`HorizontalFlip` that involves changes in the horizontal direction of the element.
{% tabs %}
@@ -569,7 +565,7 @@ The [`Flip`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Flip.
## Padding
-Padding is used to leave space between the connector’s end point and the object to where it is connected. The [`ConnectorPadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_ConnectorPadding) property of node defines the space to be left between the node bounds and its edges.
+`Padding` is used to leave space between the connector’s end point and the object to where it is connected. The [`ConnectorPadding`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_ConnectorPadding) property of `Node` defines the space to be left between the node bounds and its edges.
{% tabs %}
{% highlight xaml %}
@@ -717,9 +713,9 @@ To explore about selection and selection related events, refer to the [Selection
* A rotate handler is placed above the selector. Clicking and dragging the handler in a circular direction lead to rotate the node.
* The node is rotated with reference to the static pivot point.
-* Pivot thumb (thumb at the middle of the Node) appears when rotating the node to represent the static point. For more information about pivot, refer to [`Position`](https://help.syncfusion.com/wpf/diagram/node#position)
+* `Pivot` thumb (thumb at the middle of the Node) appears when rotating the node to represent the static point. For more information about pivot, refer to [`Position`](https://help.syncfusion.com/wpf/diagram/node#position)
-* The [`NodeChangedEvent`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_NodeChangedEvent) will notify the [`RotateAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_RotateAngle) changes with their old and new values. Along with that, this event will give information about iteraction state. To explore about arguments, refer to the [NodeChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.NodeChangedEventArgs.html) .
+* The [`NodeChangedEvent`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_NodeChangedEvent) will notify the [`RotateAngle`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.Node.html#Syncfusion_UI_Xaml_Diagram_Node_RotateAngle) changes with their old and new values. Along with that, this event will give information about interaction state. To explore about arguments, refer to the [NodeChangedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.NodeChangedEventArgs.html) .

@@ -727,8 +723,7 @@ To explore about selection and selection related events, refer to the [Selection
* The [`ItemTappedEvent`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_ItemTappedEvent) is invoked on clicking the node. To explore about arguments, refer to the [ItemTappedEventargs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.ItemTappedEventargs.html).
* The [`ItemDoubleTappedEvent`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_ItemDoubleTappedEvent) is invoked on double-clicking the node. To explore about arguments, refer to the [ItemDoubleTappedEventargs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.ItemDoubleTappedEventargs.html).
-* The [`MouseDown`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_MouseDown) and [`MouseUp`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_MouseUp) are invoked as similar to framework element that is raised together with either MouseLeftButtonUp or MouseRightButtonUp. To explore about arguments, refer to the [MouseDownEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.MouseDownEventArgs.html) and
-[MouseUpEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.MouseUpEventArgs.html).
+* The [`MouseDown`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_MouseDown) and [`MouseUp`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.IGraphInfo.html#Syncfusion_UI_Xaml_Diagram_IGraphInfo_MouseUp) are invoked as similar to framework element that is raised together with either MouseLeftButtonUp or MouseRightButtonUp. To explore about arguments, refer to the [MouseDownEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.MouseDownEventArgs.html) and [MouseUpEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.MouseUpEventArgs.html).
## Constraints
diff --git a/wpf/Gantt/migrate-from-sftreegrid.md b/wpf/Gantt/migrate-from-sftreegrid.md
index bc360caa8d..291a0eb734 100644
--- a/wpf/Gantt/migrate-from-sftreegrid.md
+++ b/wpf/Gantt/migrate-from-sftreegrid.md
@@ -16,11 +16,11 @@ To facilitate the migration from [`GridTreeControl`](https://help.syncfusion.com
| Removed assemblies |
Added assemblies |
-| Syncfusion.Grid.WPF
+ | Syncfusion.Grid.WPF
Syncfusion.GridCommon.WPF
|
-Syncfusion.SfGrid.WPF
-Syncfusion.SfSkinManager.WPF
+ | Syncfusion.SfGrid.WPF
+Syncfusion.SfSkinManager.WPF
Syncfusion.Themes.MaterialLight.WPF
|
@@ -32,8 +32,8 @@ Syncfusion.Themes.MaterialLight.WPF
Removed namespaces |
Added namespace |
-| Syncfusion.Windows.Controls.Gantt.Grid
-Syncfusion.Windows.Controls.Gantt.Schedule
+ | Syncfusion.Windows.Controls.Gantt.Grid
+Syncfusion.Windows.Controls.Gantt.Schedule
Syncfusion.Windows.Controls.Gantt.Chart |
Syncfusion.Windows.Controls.Gantt |
@@ -123,18 +123,18 @@ Syncfusion.Windows.Controls.Gantt.Chart
| {{'[GridTreeNodeEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeNodeEventArgs.html)'| markdownify }} |
{{'[ExpandStateChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeControl.html#Syncfusion_Windows_Controls_Grid_GridTreeControl_ExpandStateChanged)'| markdownify }} |
-{{'[NodeExpandedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandedEventArgs.html)'| markdownify }}
+ | {{'[NodeExpandedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandedEventArgs.html)'| markdownify }}
{{'[NodeCollapsedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeCollapsedEventArgs.html)'| markdownify }} |
-{{'[NodeExpanded](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanded)'| markdownify }}
+ | {{'[NodeExpanded](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanded)'| markdownify }}
{{'[NodeCollapsed](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeCollapsed)'| markdownify }} |
| {{'[GridTreeNodeCancelEventHandler](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeNodeCancelEventHandler.html)'| markdownify }} |
{{'[ExpandStateChanging](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeControl.html#Syncfusion_Windows_Controls_Grid_GridTreeControl_ExpandStateChanging)'| markdownify }} |
-{{'[NodeExpandingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandingEventArgs.html)'| markdownify }}
+ | {{'[NodeExpandingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandingEventArgs.html)'| markdownify }}
{{'[NodeCollapsingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeCollapsingEventArgs.html)'| markdownify }} |
-{{'[NodeExpanding](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanding)'| markdownify }}
+ | {{'[NodeExpanding](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanding)'| markdownify }}
{{'[NodeCollapsing](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeCollapsing)'| markdownify }} |
@@ -158,36 +158,36 @@ Syncfusion.Windows.Controls.Gantt.Chart
| {{'[GridSelectionMode](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Gantt.GridSelectionMode.html)'| markdownify }} |
-MouseMove
+ | MouseMove
MouseClick |
{{'[SelectionMode](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.SfGridBase.html#Syncfusion_UI_Xaml_Grid_SfGridBase_SelectionMode)'| markdownify }} |
-None
-Single
+ | None
+Single
Multiple |
| {{'[GridTreeNodeActions](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeNodeActions.html)'| markdownify }} |
-Expanding
-Expanded
-Collapsing
-Collapsed
-Selecting
+ | Expanding
+Expanded
+Collapsing
+Collapsed
+Selecting
Unselecting |
{{'[AutoExpandMode](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_AutoExpandMode)'| markdownify }} |
-None
-RootNodesExpanded
+ | None
+RootNodesExpanded
AllNodesExpanded |
| {{'[VisualStyle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Gantt.VisualStyle.html)'| markdownify }} |
-Office 2010 Blue Style
-Office2010Blue
-Office2010Black
-Office2010Silver
-Metro
-Blend
+ | Office 2010 Blue Style
+Office2010Blue
+Office2010Black
+Office2010Silver
+Metro
+Blend
VS2010
|
Nil |
@@ -393,7 +393,7 @@ To make the migration from GridTreeControl to SfTreeGrid, integrating drag-and-d
-| Syncfusion.Grid.WPF
+ | Syncfusion.Grid.WPF
Syncfusion.GridCommon.WPF
|
Syncfusion.SfGrid.WPF |
@@ -429,9 +429,9 @@ Syncfusion.GridCommon.WPF
| {{'[GridTreeNodeCancelEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeNodeCancelEventArgs.html)'| markdownify }} |
{{'[ExpandStateChanging](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeControl.html#Syncfusion_Windows_Controls_Grid_GridTreeControl_ExpandStateChanging)'| markdownify }} |
-{{'[NodeExpandingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandingEventArgs.html)'| markdownify }}
+ | {{'[NodeExpandingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandingEventArgs.html)'| markdownify }}
{{'[NodeCollapsingEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeCollapsingEventArgs.html)'| markdownify }} |
-{{'[NodeExpanding](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanding)'| markdownify }}
+ | {{'[NodeExpanding](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanding)'| markdownify }}
{{'[NodeCollapsing](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeCollapsing)'| markdownify }} |
Occurs when the node is being expanded or collapsed. |
@@ -439,10 +439,10 @@ Syncfusion.GridCommon.WPF
| {{'[GridTreeNodeEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeNodeEventArgs.html)'| markdownify }} |
{{'[ExpandStateChanged](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Controls.Grid.GridTreeControl.html#Syncfusion_Windows_Controls_Grid_GridTreeControl_ExpandStateChanged)'| markdownify }} |
-{{'[NodeExpandedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandedEventArgs.html)'| markdownify }}
+ | {{'[NodeExpandedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeExpandedEventArgs.html)'| markdownify }}
{{'[NodeCollapsedEventArgs](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.NodeCollapsedEventArgs.html)'| markdownify }}
|
-{{'[NodeExpanded](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanded)'| markdownify }}
+ | {{'[NodeExpanded](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeExpanded)'| markdownify }}
{{'[NodeCollapsed](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.TreeGrid.SfTreeGrid.html#Syncfusion_UI_Xaml_TreeGrid_SfTreeGrid_NodeCollapsed)'| markdownify }} |
Occurs after the node is expanded or collapsed. |
@@ -458,38 +458,38 @@ Syncfusion.GridCommon.WPF
| GanttGridExpandStateChangingCommandBehaviorWithEventArgs |
-GanttGridNodeExpandingCommandBehaviorWithEventArgs
+ | GanttGridNodeExpandingCommandBehaviorWithEventArgs
GanttGridNodeCollapsingCommandBehaviorWithEventArgs |
| GanttGridExpandStateChangingCommandWithEventArgs |
-GanttGridNodeExpandingCommandWithEventArgs
+ | GanttGridNodeExpandingCommandWithEventArgs
GanttGridNodeCollapsingCommandWithEventArgs |
| GanttGridExpandStateChangingCommandBehavior |
-GanttGridNodeExpandingCommandBehavior
+ | GanttGridNodeExpandingCommandBehavior
GanttGridNodeCollapsingCommandBehavior
|
| GanttGridExpandStateChangingCommand |
-GanttGridNodeExpandingCommand
+ | GanttGridNodeExpandingCommand
GanttGridNodeCollapsingCommand |
| GanttGridExpandStateChangingCommandBehavior |
-GanttGridNodeExpandingCommandBehavior
+ | GanttGridNodeExpandingCommandBehavior
GanttGridNodeCollapsingCommandBehavior |
| GanttGridExpandStateChangingCommand |
-GanttGridNodeExpandingCommand
+ | GanttGridNodeExpandingCommand
GanttGridNodeCollapsingCommand |
@@ -503,37 +503,37 @@ GanttGridNodeCollapsingCommand
| GanttGridExpandStateChangedCommandBehaviorWithEventArg |
-GanttGridNodeExpandedCommandBehaviorWithEventArg
+ | GanttGridNodeExpandedCommandBehaviorWithEventArg
GanttGridNodeCollapsedCommandBehaviorWithEventArgs |
| GanttGridExpandStateChangedCommandWithEventArgs |
-GanttGridNodeExpandedCommandWithEventArgs
+ | GanttGridNodeExpandedCommandWithEventArgs
GanttGridNodeCollapsedCommandWithEventArgs |
| GanttGridExpandStateChangedCommandBehavior |
-GanttGridNodeExpandedCommandBehavior
+ | GanttGridNodeExpandedCommandBehavior
GanttGridNodeCollapsedCommandbehavior |
| GanttGridExpandStateChangedCommand |
-GanttGridNodeExpandStateChangedCommand
+ | GanttGridNodeExpandStateChangedCommand
GanttGridNodeCollapsedCommand |
| GanttGridExpandStateChangedCommandBehavior |
-GanttGridNodeExpandedCommandBehavior
+ | GanttGridNodeExpandedCommandBehavior
GanttGridNodeCollapsedCommandbehavior |
| GanttGridExpandStateChangedCommand |
-GanttGridNodeExpandedCommand
+ | GanttGridNodeExpandedCommand
GanttGridNodeCollapsedCommand |
diff --git a/wpf/Scheduler/Appointments.md b/wpf/Scheduler/Appointments.md
index 494378c495..caafd29dfe 100644
--- a/wpf/Scheduler/Appointments.md
+++ b/wpf/Scheduler/Appointments.md
@@ -786,32 +786,60 @@ The following code example shows the usage of DataTemplate.
{% highlight xaml %}
-
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+