Hi Team,
I am included images in Rad Slide View But it takes default image size for slide view.
How i can that image FillAndExpand or AspectFit for Slide view.
Regards,
Pramod M.
I would like to set the colors for my pie chart dynamically based on the categories of data available. The RadPieChart.Palette property seems a solution for this, as its bindable and the custom bound colors are indeed picked up by the control as expected. So far so good. However, when enabling label rendering via the ShowLabels property, rendering of the labels becomes problematic. See picture.
Example code (fragment):
01.
<
ListView.Header
>
02.
<
Grid
IsVisible
=
"{Binding ListSource, Converter={StaticResource ItemsSourceNotEmptyConverter}}"
>
03.
<
Grid.RowDefinitions
>
04.
<
RowDefinition
Height
=
"3*"
/>
05.
<
RowDefinition
Height
=
"*"
/>
06.
</
Grid.RowDefinitions
>
07.
08.
<
StackLayout
Margin
=
"0,5,0,0"
Orientation
=
"Vertical"
>
09.
10.
<
Label
11.
HorizontalTextAlignment
=
"Center"
12.
Style
=
"{StaticResource DefaultCaptionStyle}"
13.
Text
=
"{i18n:Translate verrichtingCategoryCounts}"
/>
14.
15.
<
telerikChart:RadPieChart
16.
x:Name
=
"chart"
BackgroundColor
=
"Transparent"
17.
Palette
=
"{Binding ChartPalette}"
>
18.
<
telerikChart:RadPieChart.Series
>
19.
<
telerikChart:PieSeries
20.
ItemsSource
=
"{Binding ChartDataSeries}"
21.
LegendTitleBinding
=
"Legend"
ShowLabels
=
"True"
>
22.
<
telerikChart:PieSeries.ValueBinding
>
23.
<
telerikChart:PropertyNameDataPointBinding
PropertyName
=
"Value"
/>
24.
</
telerikChart:PieSeries.ValueBinding
>
25.
</
telerikChart:PieSeries
>
26.
</
telerikChart:RadPieChart.Series
>
27.
</
telerikChart:RadPieChart
>
28.
</
StackLayout
>
29.
30.
<
ScrollView
Grid.Row
=
"1"
>
31.
<
telerikChart:RadLegend
32.
x:Name
=
"chartLegend"
Margin
=
"8,0,8,8"
33.
LegendItemFontSize
=
"{extensions:FontSize Small}"
34.
LegendProvider
=
"{x:Reference Name=chart}"
35.
Orientation
=
"Vertical"
>
36.
<
telerikChart:RadLegend.LegendItemIconSize
>
37.
<
Size
Width
=
"6"
Height
=
"6"
/>
38.
</
telerikChart:RadLegend.LegendItemIconSize
>
39.
</
telerikChart:RadLegend
>
40.
</
ScrollView
>
41.
</
Grid
>
42.
</
ListView.Header
>
I have several ListView's that are IsLoadOnDemandEnabled="True" and SelectionMode="Single". In every case, touching "Load more items" fires a SelectionChanged event, unselecting any row that was set prior to loading more items. This unselecting does not occur when SelectionMode="Multiple". To make matters worse, the SelectionChange event fires before the LoadOnDemand event, giving me know way of interrupting the de-selection.
This makes no sense from a user's perspective. Loading more records does not in any way imply that the currently-selected record(s) should be unselected.
I'm inclined to call this a pure bug, but I'm happy to hear your thoughts on the matter.
For the RadAutoComplete control for Xamarin (release 2017.3.1103.4), I have tried setting the CompletionMode property both in markup and the code-behind, but the typeahead always behaves as though "StarsWith" was the value instead of "Contains."
Is this a bug in the current release?
Do you have an editor control?
I need an WYSIWYG kind of HTML editor with bold, Italic, underline and intention buttons.
Do you have modal view. In iOS, I call a formsheet modal view.
Can we do that with Telerik?
Hi,
Is there any way to select and edit all the cells from a specific column?
Regards,
Stavros
Hello all,
I'm currently in the process of converting an Xamarin.iOS application to Xamarin.Android. However, when i render a PieChart
on iOS, there is no space between the series. When i try to render the same chart on Android, there is a small white line between the series.
I have attached an example of this behaviour.
Is it possible to remove the space between the series of the Piechart?