- Home
- Forum
- Xamarin.Forms
- SfCalnendar
SfCalnendar
5 Replies
MS
Muniappan Subramanian
Syncfusion Team
March 20, 2020 09:13 AM UTC
Hi Yogita,
Thank you for Contacting Syncfusion support.
We have analyzed your reported query “Display two months at a time in single view” as of now SfCalendar does not have support to show two months at a time in single view.
Kindly revert us if you have any concern.
Regards,
Muniappan S
PR
Padmini Ramamurthy
Syncfusion Team
April 1, 2020 10:30 AM UTC
From: Yogita Magdum
Sent: Wednesday, April 1, 2020 5:42 AM
To: Syncfusion Support <[email protected]>
Subject: SfRangeslider
Sent: Wednesday, April 1, 2020 5:42 AM
To: Syncfusion Support <[email protected]>
Subject: SfRangeslider
Please help how to bind Rangestart,RangeEnd ,maximum and minimum property of sfrangeslider in xamrian mvvm.
Thanks
Yogita
SP
Sakthivel Palaniyappan
Syncfusion Team
April 2, 2020 11:54 AM UTC
Hi Yogita,
Thanks for the update.
We have analyzed your query and you can achieve your requirement as like below code snippet.
ViewModel:
Thanks for the update.
We have analyzed your query and you can achieve your requirement as like below code snippet.
ViewModel:
|
public class RangeViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private double rangeMinimum = 0;
public double RangeMinimum
{
get { return rangeMinimum; }
set { rangeMinimum = value; NotifyPropertyChanged(); }
}
…
} |
XAML:
|
<ContentPage.BindingContext>
<local:RangeViewModel/>
</ContentPage.BindingContext>
<StackLayout>
<range:SfRangeSlider x:Name="rangeslider" Orientation="Horizontal" ShowValueLabel="True" Minimum="{Binding RangeMinimum}" Maximum="{Binding RangeMaximum}" RangeStart="{Binding InternalRangeStart}" RangeEnd="{Binding InternalRangeEnd}" ShowRange="true"/>
</StackLayout> |
We have created sample based on this, please find the sample from below.
Sample link:
https://www.syncfusion.com/downloads/support/directtrac/general/ze/RotatorSample-836846295.zip
Please let us know, if you have any other queries.
Regards,
Sakthivel P.
YO
Yogita
April 13, 2020 02:06 PM UTC
Hi ,
Any Update on 2months in single in Xamarin
Regards
MS
Muniappan Subramanian
Syncfusion Team
April 14, 2020 08:52 AM UTC
Hi Yogita,
Thank you for the update.
We regret to inform you that as per the current implementation SfCalendar does not have support to show two months at a time in single view.
Regards,
Muniappan S
SIGN IN To post a reply.
- 5 Replies
- 4 Participants
-
YO Yogita
- Mar 20, 2020 07:17 AM UTC
- Apr 14, 2020 08:52 AM UTC