Skip to content

Commit e899375

Browse files
Merge pull request #1921 from Syncfusion-Content/hotfix/hotfix-v31.1.17
DOCINFRA-2341_merged_using_automation
2 parents d208e5c + f11c80a commit e899375

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wpf/Kanban-Board/Getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ To populate the kanban card items, utilize the [`ItemsSource`](https://help.sync
9494
The 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

118118
SfKanban kanban = new SfKanban()
119119
{
@@ -222,7 +222,7 @@ Alternatively, you can manually define columns by setting [`AutoGenerateColumns`
222222
Let’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

259259
this.kanban.ItemsSource = new ViewModel().Tasks;
260260
this.kanban.ColumnMappingPath = "Status";

0 commit comments

Comments
 (0)