Hi there.
I'm developing an app that uses a calendar.
I see month views , week views but no day view.
Is there a way to "tap" on a date and go to day view?
Also is there an event when I tap an appointment?
Appointment datasource is only for representing it on RadCalendar ? Can I get anything like AppointmentSelected attribute?
Hi,
I added a swipe to delete feature to our apps.
The issue is that in Android when you call EndItemSwipe() the 1st item in the listview animates and bounces out even though it's not affected. I know this is a known issue but I was wondering when I potential fix will be available?
Thanks.
Where can I download the source for this demo application?
https://play.google.com/store/apps/details?id=com.telerik.xamarin&hl=en
Hi,
I am trying to change the X-Axis label style for a line-chart.
In specific, I am attempting to change the font, as well as the label text color in the following way:
var series =
new
TKChartLineSeries(graphData.ToArray());
series.Style.Stroke =
new
TKStroke(ConvertToUIColor(lineColor));
peakTimeChart.AddSeries(series);
peakTimeChart.XAxis.Style.MajorTickStyle.TicksHidden =
true
;
peakTimeChart.XAxis.Style.MinorTickStyle.TicksHidden =
true
;
peakTimeChart.XAxis.Style.LineStroke =
new
TKStroke(ConvertToUIColor(axisColor));
peakTimeChart.XAxis.Style.LabelStyle.TextColor = UIColor.Red;
peakTimeChart.XAxis.Style.LabelStyle.Font = UIFont.FromName(
"Avenir Next Condensed"
, 7f);
peakTimeChart.ReloadData();
Everything seems to be working, except of the label color and font.
I tried to to reload data as was suggested in the iOS-UI forum, but that didn't seem to work.
Am I missing anything?
Hi, i am using the telerik chart and code it in the xamarin form, however, when i deploy to the android platform the chart does not able to rotate and the IOS is able to rotate, how do i disable the rotation in the IOS platform? I have tried to find userInteractionEnabled but there is no this function in the chart, how do i disable it?
var series = new PieSeries();
series.ValueBinding = new Telerik.XamarinForms.Chart.PropertyNameDataPointBinding
{
PropertyName = "Value"
};
series.ItemsSource = data1;
series.ShowLabels = true;
chart.Series.Add(series);
chart.Palette = CustomPalettes.CustomWhite;
chartlayout.Children.Add(chart);
Hi,
Im creating a Dashboard using StoryBoard and Telerik Chart within Xamarin. I was able to create my chart and populate but I'm lost when I try to set the format. I want to set the current Label + Value as the second image.
Here is my code and I have attached 2 images, the first one is the current behavior of my code, and second is what I'm trying to create.
TKChart revenueView = new TKChart();
revenueView.BackgroundColor = UIColor.FromRGB (238, 238, 238);
revenueView.AllowAnimations = true;
revenueView.Legend.Hidden = false;
revenueView.Legend.Style.Position = TKChartLegendPosition.Right;
revenueView.AutoresizingMask = ~UIViewAutoresizing.None;
TKChartDonutSeries series =
new
TKChartDonutSeries (revData.GetCurrentData (time, comparision));
series.Title =
"Series Title"
;
series.SelectionMode = TKChartSeriesSelectionMode.DataPoint;
series.InnerRadius = 0.6f;
series.ExpandRadius = 1.1f;
series.LabelDisplayMode = TKChartPieSeriesLabelDisplayMode.Outside;
series.Style.PointLabelStyle.TextHidden =
false
;
series.Style.PointLabelStyle.LabelOffset =
new
UIOffset (0, -25);
revenueView.AddSeries (series);
Greetings,
I have a few more questions about the DataForm editors.
1)I am interested in starting a new activity when the user tries to edit a certain property. Should I implement some kind of event, or create a new editor that overrides a certain method (and which)?
2)I would like to know if and how I could setup a multiline text editor.
Thank you in advance,
vagg