Skip to content

Commit c354b96

Browse files
author
SivaranjithN
committed
Addressed the comments
1 parent ab74d78 commit c354b96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

maui-toolkit/Chips/Customization.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ The [ChipCornerRadius](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.Core.
12631263
<StackLayout Margin="10,10,10,10">
12641264
<ChipControl:SfChipGroup ItemsSource="{Binding Employees}"
12651265
DisplayMemberPath="Name"
1266-
ChipCornerRadius="1">
1266+
ChipCornerRadius="20">
12671267
</ChipControl:SfChipGroup>
12681268
</StackLayout>
12691269
</ContentPage.Content>
@@ -1279,7 +1279,7 @@ stack.Children.Add(chipGroup);
12791279
this.BindingContext = new ViewModel();
12801280
chipGroup.SetBinding(SfChipGroup.ItemsSourceProperty, "Employees");
12811281
chipGroup.DisplayMemberPath = "Name";
1282-
chipGroup.ChipCornerRadius = 1;
1282+
chipGroup.ChipCornerRadius = 20;
12831283
this.Content = stack;
12841284

12851285
{% endhighlight %}
@@ -1288,7 +1288,7 @@ this.Content = stack;
12881288

12891289
![SfChipGroup with ChipCornerRadius](images/customization-images/chipgroup_chipcornerradius_image.png)
12901290

1291-
N> N> The default value of CornerRadius is [`Thickness(8)`]. When using ItemTemplate in SfChipGroup, to modify the corner radius of each chip, set the ChipCornerRadius of the SfChipGroup to avoid extra borders.
1291+
N> The default value of ChipCornerRadius is [`Thickness(8)`]. When using ItemTemplate in SfChipGroup, to modify the corner radius of each chip, set the ChipCornerRadius of the SfChipGroup to avoid extra borders.
12921292

12931293
## ChipTextSize
12941294

659 Bytes
Loading

0 commit comments

Comments
 (0)