Telerik Forums
UI for Xamarin Forum
13 answers
152 views

Hello,

 

If series added after constructor, e.g. from Appearing event, then vertical axis labels are not displayed.

Here is a small sample project:

https://github.com/VitalyKnyazev/ios-chart-issue

 

In addition, on both Android and iOS if existing series is removed and added back - it is not displayed and on iOS all series can just disappear.

 

Yours faithfully

Vitaly Knyazev

Yana
Telerik team
 answered on 14 Jun 2019
1 answer
144 views

Hi Team,

I am using only RadCalendarView in my app. My organization has purchased the license. My organization wants to only add Calendar nuget but there is not nuget for only Calendar rather for complete Telerik UI for Xamarin. After adding this nuget the app size increased by around 25-30 MB which is drastic increase in the apk size. Kindly let me know if there is anyway to do so or shall I raise a new feature request.

Lance | Senior Manager Technical Support
Telerik team
 answered on 13 Jun 2019
3 answers
201 views

Hi, I started playing with Scheduler, and I discover that there is hard to maintain selectedDate when I change between view modes.
For example, I set Month view mode, next I select interesting date, and want to see day view for this date. How do you do this?
When I change view mode to DayView, SelectedDay event clears date seleced in MonthView mode.
Maybe this is some bug, but how creators intended to use those controls for such purpose?
Maybe is there some example of such case of those controls?

And also what is DisplayDate, whoat is diff to SelectedDate, I didn't find it in docs.

Lance | Senior Manager Technical Support
Telerik team
 answered on 13 Jun 2019
3 answers
429 views

Hello,

Do we have an option to disable column selector/rearrange in data grid.

Any help would be highly appreciated. Thank in advance.

Lance | Senior Manager Technical Support
Telerik team
 answered on 12 Jun 2019
3 answers
381 views

Hi Team,

I am using Calendar Control and in month view mode it currently shows 

previous month's last week dates and next months first week dates as well.

Is it possible to show only dates for current month .?

Please let me know how we could achieve it.

 

Thanks,

Avinash

 

Yana
Telerik team
 answered on 12 Jun 2019
1 answer
130 views

Hi There

when we use SuggestionItemTemplate in our autocomplete to add custom design to the suggestions items, it is not consistent. Some of the row data are missing from there(Please see the attached 1st image). But in android it is very consistent(2nd image).Everything is showing perfectly.

 

 <telerikInput:RadAutoComplete x:Name="autoCompleteWatermark" 
                                                          ItemsSource="{Binding Options}" 
                                                          VerticalOptions="Start" 
                                                          NoResultsMessage="there are no matching items..." 
                                                          Watermark="Search here..."
                                                          SuggestionItemSelected="AutoComplete_OnSuggestionItemSelected">

                                            <telerikInput:RadAutoComplete.SuggestionViewHeight>
                                                <OnPlatform x:TypeArguments="x:Double"
                                                            Android="150"
                                                            iOS="150" />
                                            </telerikInput:RadAutoComplete.SuggestionViewHeight>

                                            <telerikInput:RadAutoComplete.SuggestionItemTemplate>
                                                <DataTemplate>
                                                    <Grid>
                                                        <Grid.ColumnDefinitions>
                                                            <ColumnDefinition Width="*" />
                                                        </Grid.ColumnDefinitions>
                                                        <telerikPrimitives:RadBorder BorderColor="#4488F6" CornerRadius="3">
                                                            <Label Margin="5"
                                                             FontSize="Medium"
                                                             Text="{Binding Item}"
                                                             Style="{StaticResource RegularLabel }"
                                                             TextColor="Black" />
                                                        </telerikPrimitives:RadBorder>
                                                    </Grid>
                                                </DataTemplate>
                                            </telerikInput:RadAutoComplete.SuggestionItemTemplate>
                                        </telerikInput:RadAutoComplete>

Didi
Telerik team
 answered on 11 Jun 2019
1 answer
115 views

Hi Team,

 

I am using TKCalendar and want to know how can I disable deselection of any selected date?

Kindly provide if any possible way.

 

Thanks,

Avinash

Lance | Senior Manager Technical Support
Telerik team
 answered on 10 Jun 2019
1 answer
84 views

I have a RadRadialGauge that is working almost exactly like my client wants.  I have one issue - the max value label does not display, but the min value ("0 %") does.  How can I make the max value label display?  And is it possible for control the font sized used by the label?

 

<telerikGauges:RadRadialGauge Margin="0" Padding="0" BackgroundColor="Yellow" x:Name="gauge" HeightRequest="150" WidthRequest="150">
  <telerikGauges:RadRadialGauge.Axis>
<telerikGauges:GaugeLinearAxis ShowLabels="true" LabelFormat="P0" Maximum="{Binding GaugeMax}" Minimum="0" Step="10" StrokeThickness="0" />
</telerikGauges:RadRadialGauge.Axis>
<telerikGauges:RadRadialGauge.Indicators>
<telerikGauges:GaugeBarIndicator StartThickness="8" EndThickness="8" Value="{Binding GaugeMax}" Fill="#55A0A0A0" />
<telerikGauges:GaugeBarIndicator Fill="#d5715b" StartThickness="8" EndThickness="8" Value="{Binding FarmTurnoverLast12Mo}" StartCap="Flat" EndCap="Flat" IsOffsetRelative="true">
</telerikGauges:GaugeBarIndicator>
<telerikGauges:GaugeBarIndicator StartThickness="8" EndThickness="8" Value="{Binding GaugeMax}" Fill="#55A0A0A0" Offset="15" />
<telerikGauges:GaugeBarIndicator Fill="#ac5b49" StartThickness="8" EndThickness="8" Value="{Binding ZipTurnoverLast12Mo}" Offset="15" StartCap="Flat" EndCap="Flat" IsOffsetRelative="true">
</telerikGauges:GaugeBarIndicator>
<telerikGauges:GaugeBarIndicator StartThickness="8" EndThickness="8" Value="{Binding GaugeMax}" Fill="#55A0A0A0" Offset="25" />
<telerikGauges:GaugeBarIndicator Fill="#e2a294" StartThickness="8" EndThickness="8" Value="{Binding CountyTurnoverLast12Mo}" Offset="25" StartCap="Flat" EndCap="Flat" IsOffsetRelative="true">
</telerikGauges:GaugeBarIndicator>
</telerikGauges:RadRadialGauge.Indicators>
</telerikGauges:RadRadialGauge>

 

 


Lance | Senior Manager Technical Support
Telerik team
 answered on 10 Jun 2019
1 answer
56 views
I want make my Items inside a ListView going right to left.
At the moment I have default settings:

As you can see I have a hole in the right and I want to reverse this, put a hole in the left.
Hope you understand the problem.

<telerikDataControls:RadListView ItemsSource="{Binding CatalogSizes, Source={x:Reference ExtendedContentView}}" >
    <telerikDataControls:RadListView.ItemTemplate>
        <DataTemplate>
            <listView:ListViewTemplateCell>
                <listView:ListViewTemplateCell.View>
                    <Frame Padding="0" CornerRadius="3.5" BackgroundColor="{Binding IsEnabled, Converter={StaticResource Batata}, ConverterParameter={x:Reference Name=MainColorGrid}}">
                        <Label Text="{Binding Quantity}" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
                     </Frame>
                 </listView:ListViewTemplateCell.View>
             </listView:ListViewTemplateCell>
          </DataTemplate>
      </telerikDataControls:RadListView.ItemTemplate>
      <telerikDataControls:RadListView.LayoutDefinition>
          <listView:ListViewGridLayout SpanCount="3" HorizontalItemSpacing="3" />
       </telerikDataControls:RadListView.LayoutDefinition>
</telerikDataControls:RadListView>
Didi
Telerik team
 answered on 10 Jun 2019
1 answer
128 views
I want make my Items inside a ListView going right to left.
At the moment I have default settings:

![Image](https://i.imgur.com/NDE3Y8c.png)

As you can see I have a hole in the right and I want to reverse this, put a hole in the left.
Hope you understand the problem.

```
 <telerikDataControls:RadListView ItemsSource="{Binding CatalogSizes, Source={x:Reference ExtendedContentView}}" >
    <telerikDataControls:RadListView.ItemTemplate>
        <DataTemplate>
            <listView:ListViewTemplateCell>
                <listView:ListViewTemplateCell.View>
                    <Frame Padding="0" CornerRadius="3.5" BackgroundColor="{Binding IsEnabled, Converter={StaticResource Batata}, ConverterParameter={x:Reference Name=MainColorGrid}}">
                        <Label Text="{Binding Quantity}" FontAttributes="Bold" HorizontalTextAlignment="Center" VerticalTextAlignment="Center"/>
                     </Frame>
                 </listView:ListViewTemplateCell.View>
             </listView:ListViewTemplateCell>
          </DataTemplate>
      </telerikDataControls:RadListView.ItemTemplate>
      <telerikDataControls:RadListView.LayoutDefinition>
          <listView:ListViewGridLayout SpanCount="3" HorizontalItemSpacing="3" />
       </telerikDataControls:RadListView.LayoutDefinition>
</telerikDataControls:RadListView>
```
Didi
Telerik team
 answered on 10 Jun 2019
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?