Hi --
I have both an iOS *and* an Android question/issue on the same chart that I was wondering if I could get reviewed. I am splitting them into two different issues in case somebody in the future searches for the individual items.
For Android, the chart we are rendering makes it X-axis labels too small. I am wondering if this is either a bug that needs fixing or if there is any way I can control the font size for the labels.
I have attached an image of the chart -- which otherwise looks pretty good!
I have also created a GitHub repo which can run and has all of this source code:
https://github.com/dahlsailrunner/TelerikSample
If you run the sample for Android you should be able to reproduce the behavior.
Thanks in advance for your review.
-Erik
Hi
Can you please provide a sample of how to implement a custom cell in RadListView? Along the lines of https://developer.xamarin.com/guides/cross-platform/xamarin-forms/user-interface/listview/customizing-cell-appearance/#Custom_Cells
Thanks
Martin
Hi,
I follow the tutorial on the documentation but i have a little problem and i can't solve it ...
if (!(calendarCell is CalendarDayCell))
{
return;
}
This function always return. I don't understand what does this test mean and why it does not success
Hope you can help me !
Thanks
Hi,
There's an important step missing in the documentation for this:
http://docs.telerik.com/devtools/xamarin/controls/sidedrawer/sidedrawer-getting-started
In iOS, after init of TelerikForms in FinishedLaunching you need to do:
new
Telerik.XamarinForms.PrimitivesRenderer.iOS.SideDrawerRenderer();
It doesn't compile for ARM7 to a physical device otherwise.
Kind Regards,
Norman.
Hi There,
How do I add row separators to a listview? I have tried to use the following in the listview:
<telerik:RadListView.LayoutDefinition>
<telerikListView:ListViewLinearLayout HorizontalItemSpacing="0" VerticalItemSpacing="3" Orientation="Vertical" />
</telerik:RadListView.LayoutDefinition>
The issue with this is that you must have a dark background set on the Listview and every 3rd line separator is slightly larger than the others. How can I get a true separator between rows on Android and IOS with custom cells?
Hi
Currently the Hamburger icon is on the right of the Nav Bar in iOS - how can I move it to the left? Most side drawers open to the left, so it will make sense to have the icon on the left as well.
Thanks
Martin
Trying to get a little tricky here, to see what I can and can't do. I have the following in my App.cs in my Xamarin.Forms project:
BindingContext = new MainViewModel();
RadSideDrawer rsd = new RadSideDrawer();
rsd.DrawerLength = 250;
RadPieChart pie = new RadPieChart();
PieSeries series = new PieSeries();
series.SetBinding( BarSeries.ItemsSourceProperty, new Binding( "Data" ) );
series.ValueBinding = new PropertyNameDataPointBinding() { PropertyName = "Value" };
pie.Series.Add( series );
RadSideDrawer rightDrawer = new RadSideDrawer();
StackLayout slr = new StackLayout();
slr.Padding = 20;
slr.Children.Add( new Label() { Text = "Right Side" } );
slr.Children.Add( new Button() { Text = "R One" } );
slr.Children.Add( new Button() { Text = "R Two" } );
slr.Children.Add( new Button() { Text = "R Three" } );
slr.Children.Add( new Button() { Text = "R Four" } );
rightDrawer.DrawerContent = slr;
rightDrawer.DrawerLocation = Telerik.XamarinForms.Primitives.SideDrawer.SideDrawerLocation.Right;
rightDrawer.MainContent = pie;
rsd.MainContent = rightDrawer;
StackLayout sl = new StackLayout();
sl.Padding = 20;
sl.Children.Add( new Label() { Text = "Left Side" } );
sl.Children.Add( new Button() { Text = "L One" } );
sl.Children.Add( new Button() { Text = "L Two" } );
sl.Children.Add( new Button() { Text = "L Three" } );
sl.Children.Add( new Button() { Text = "L Four" } );
rsd.DrawerContent = sl;
// The root page of your application
ContentPage p = new ContentPage();
p.BackgroundColor = Xamarin.Forms.Device.OnPlatform( Xamarin.Forms.Color.White, Xamarin.Forms.Color.White, Xamarin.Forms.Color.Transparent );
p.Content = rsd;
MainPage = p;
Ignoring the ViewModel and PieChart data, the Pie Chart here doesn't render. If I remove one of the Drawers, and set the remaining drawer's MainContent to the pie chart, it works. But the embedded drawers here prevent the chart from rendering.
Is there a way to make this work?
Hi,
How can I see the event indicators in the calendar when in week mode?
The events show up fine in Month mode but not in week mode.
Also when I scroll the week mode it always scrolls an entire week at a time.
Is there some way to scroll only 1 day at a time?
Regards
Damien
Hi,
We potentially/unfortunately have to support Windows Phone 8.1 as well no in our Xamarin Forms corporate apps.
Why is their no Listview support or Slidedrawer& DataForm?
As our apps are cross platform it essentially means we can only useful controls we will have is the calendar (not currently used) and chart (currently used)
What is your roadmap for windows universal and since we're using Forms where does that leave us?
XamlC has popped up again in version 1.5.1 Pre1. Hopefully it'll make it through to production this time round.
What's the word on the Telerik Forms controls working with XamlC? I noticed another user on the Forms forum say he was having difficulty getting them to work with XamlC.
For obvious performance reasons we want to move to XamlC if it moves through to release.
Thanks,
Norman.