This is a migrated thread and some comments may be shown as answers.

Busy Indicator Content's/BusyContent's Label's Text is only horizontally half visible

1 Answer 176 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
San
Top achievements
Rank 1
San asked on 06 Jun 2018, 04:23 PM

Busy Indicator Content's Label's Text is only half visible if i din't set any text size, else if i set some text size to the label then the text is not even quarter visible

 

<telerikPrimitives:RadBusyIndicator x:Name="busyIndicator" 
                                            AnimationType="Custom"
                                            IsBusy="False">

            <telerikPrimitives:RadBusyIndicator.Content>
                <Label x:Name="BusyLabel"
                       Text="Logged in successfully" 
                       FontSize="Large"
                       IsEnabled="False"/>
            </telerikPrimitives:RadBusyIndicator.Content>
            <telerikPrimitives:RadBusyIndicator.BusyContent>
                <Label x:Name="BusyLoading"
                       HorizontalOptions="Center"
                       Text="Loading...iiiiiiiiii" 
                       VerticalOptions="Center"
                       IsEnabled="False"
                       />
            </telerikPrimitives:RadBusyIndicator.BusyContent>
        </telerikPrimitives:RadBusyIndicator>

1 Answer, 1 is accepted

Sort by
0
Didi
Telerik team
answered on 07 Jun 2018, 02:39 PM
Hi San,

Thank you for the provided image and the sample code. I have tested it and I reproduced the issue you described.

As a workaround I suggest you to set a HeightRequest of the BusyIndicator. Please take a look at the provided XAML code snippet:

<StackLayout>
    <Label Text="Login" />
    <telerikInput:RadEntry x:Name="entry" WatermarkText="Email/UserName"/>
 
    <Label Text="Password" />
    <telerikInput:RadEntry x:Name="entry1" WatermarkText="Password"/>
 
    <telerikInput:RadButton x:Name="button"
                        Text="Click me!" 
                        BorderThickness="2"
                        />
 
    <telerikPrimitives:RadBusyIndicator x:Name="busyIndicator"
                                            AnimationType="Custom"
                                            IsBusy="False"
                                            HeightRequest="70">
 
        <telerikPrimitives:RadBusyIndicator.Content>
 
            <Label x:Name="BusyLabel"
                       Text="Logged in successfully"
                       FontSize="Large"
                       IsEnabled="False"/>
        </telerikPrimitives:RadBusyIndicator.Content>
        <telerikPrimitives:RadBusyIndicator.BusyContent>
 
            <Label x:Name="BusyLoading"
                       HorizontalOptions="Center"
                       Text="Loading...iiiiiiiiii"
                       VerticalOptions="Center"
                       IsEnabled="False"
                       />
 
        </telerikPrimitives:RadBusyIndicator.BusyContent>
    </telerikPrimitives:RadBusyIndicator>
</StackLayout>

I have logged this in our Feedback Portal, you could follow the item in the link below:
https://feedback.telerik.com/Project/168/Feedback/Details/251035-busyindicator-content-is-not-fully-visible-clipped

You can also find your Telerik points updated for reporting this issue.

Regards,
Didi
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
BusyIndicator
Asked by
San
Top achievements
Rank 1
Answers by
Didi
Telerik team
Share this question
or