Welcome to the Xamarin.Forms feedback portal. We’re happy you’re here! If you have feedback on how to improve the Xamarin.Forms, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Replication procedure:

While executing the following code sample unable to view the content.

  <progressBar:SfCircularProgressBar Progress="50" VerticalOptions="CenterAndExpand"
                                               HeightRequest="180"
                                               WidthRequest="180"
                                               TrackColor="#EFEFEF"
                                               ProgressColor="#7718AA"
                                               IndicatorInnerRadius="0.65"
                                               TrackInnerRadius="0.65"
                                               ShowProgressValue="false">
                            <progressBar:SfCircularProgressBar.Content>
                                        <Grid RowSpacing="0">
                                            <Grid.RowDefinitions>
                                                <RowDefinition Height="Auto"/>
                                                <RowDefinition Height="Auto"/>
                                                <RowDefinition Height="Auto"/>
                                            </Grid.RowDefinitions>
                                            <Label Grid.Row="0" Text="BLA" TextColor="Black"
                               FontSize="32" FontAttributes="Bold"
                               HorizontalTextAlignment="Center"/>
                                            <Label Grid.Row="1" Text="ACTIVE" TextColor="Black"
                               FontSize="13" HorizontalTextAlignment="Center"/>
                                            <Label Grid.Row="2" Text="BOOKINGS" TextColor="Black"
                               FontSize="13" HorizontalTextAlignment="Center"/>
                                        </Grid>
                                    </progressBar:SfCircularProgressBar.Content>
                            </progressBar:SfCircularProgressBar>