@@ -94,7 +94,7 @@ To populate the kanban card items, utilize the [`ItemsSource`](https://help.sync
9494The following sample code demonstrates this process in action:
9595
9696{% tabs %}
97- {% highlight XAML hl_lines="3, 4, 5, 6, 7, 8, 91, 11, 12, 13" %}
97+ {% highlight XAML hl_lines="3 4 5 6 7 8 9 10 11 12 13" %}
9898
9999<Grid x:Name =" grid " >
100100 <syncfusion:SfKanban x:Name="kanban"
@@ -113,7 +113,7 @@ The following sample code demonstrates this process in action:
113113</Grid >
114114
115115{% endhighlight %}
116- {% highlight C# hl_lines="1, 3, 4, 7, 9, 10, 11, 12, 15, 17, 18, 19, 20, 23, 25, 26, 27, 28, 31" %}
116+ {% highlight C# hl_lines="1 3 4 7 9 10 11 12 15 17 18 19 20 23 25 26 27 28 31" %}
117117
118118SfKanban kanban = new SfKanban()
119119{
@@ -222,7 +222,7 @@ Alternatively, you can manually define columns by setting [`AutoGenerateColumns`
222222Let’s look at the practical code example:
223223
224224{% tabs %}
225- {% highlight XAML hl_lines="2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27" %}
225+ {% highlight XAML hl_lines="2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27" %}
226226
227227<syncfusion: SfKanban x: Name ="kanban"
228228 ColumnMappingPath="Status"
@@ -254,7 +254,7 @@ Let’s look at the practical code example:
254254</syncfusion: SfKanban >
255255
256256{% endhighlight %}
257- {% highlight C# hl_lines="1, 2" %}
257+ {% highlight C# hl_lines="1 2" %}
258258
259259this.kanban.ItemsSource = new ViewModel().Tasks;
260260this.kanban.ColumnMappingPath = "Status";
0 commit comments