I have a linear chart that contains data from 1/4/2019 to 31/3/2020. However, the last tick is not displayed? How to always display the last tick with the corresponding label. Thanks
<telerik:RadCartesianChart
HorizontalZoomRangeStart="0.0" HorizontalZoomRangeEnd="1.0" RenderTransformOrigin="0.5,0.5">
<telerik:RadCartesianChart.Resources>
<Style BasedOn="{StaticResource LineSeriesStyle}" TargetType="{x:Type telerik:LineSeries}">
<Setter Property="CategoryBinding" Value="X" />
<Setter Property="ValueBinding" Value="Y" />
<Setter Property="StrokeThickness" Value="2" />
<Setter Property="Stroke" Value="#0083A9" /> <!-- Aon blue. See: https://brandmatters.aon.com/bms/damui/index.cfm?category=1450&assetID=4993 -->
</Style>
</telerik:RadCartesianChart.Resources>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:DateTimeContinuousAxis LabelFormat="{Binding HorizontalAxisFormatString}"
SmartLabelsMode="SmartStep" />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:LinearAxis
LabelFormat="{Binding VerticalAxisFormatString}"
RangeExtendDirection="None"
SmartLabelsMode="SmartStep" />
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.SeriesProvider>
<telerik:ChartSeriesProvider Source="{Binding ItemsSource}">
<telerik:ChartSeriesProvider.SeriesDescriptors>
<telerik:ChartSeriesDescriptor ItemsSourcePath="Points" TypePath="SeriesType" />
</telerik:ChartSeriesProvider.SeriesDescriptors>
</telerik:ChartSeriesProvider>
</telerik:RadCartesianChart.SeriesProvider>
<telerik:RadCartesianChart.Grid>
<telerik:CartesianChartGrid MajorLinesVisibility="XY" />
</telerik:RadCartesianChart.Grid>
</telerik:RadCartesianChart>Hi,
So, I have been tasked with fixing a XAML issue in RadGridView where FilterMemberPath has been set in the CustomGridViewDataColumn…This creates Custom Filter Options....
However, the Column Header isn’t highlighting as expected when the Filter is applied…
Is there a solution to this issue…
Hello.
Same gridview exists in RowDetails in GridView.
I want to hide columns at the same time.
I applied the hide/show column function in the parent gridview right from the sdk example.
However, it is difficult to apply in row details.
I tested it in a slightly different way, but it didn't work.
How should I approach it?
Width column synchronization was also applied to make visible similarly, but it failed.
Thanks.

Hi,
Is there a way I can insert text in Hebrew and scan it?
Because by default I see that it only supports English.
Thanks.
We have requirements to render html contents in List control (ItemsControl). Collection source may contains upto 200 html content.
Initially we tested RadRichtextbox with HTMLFormatProvider to bind Html content. radrichtextbox along with HtmlFormatProvider works fine for small collection, but if ItemsSource has more than 100 items, we are facing performance issue.
Therefore I replaced Telerik control with HtmlRenderer.WPF (HtmlPanel) control, which is faster compared to telerik control. HtmlPanel has flow direction issue with arabic text.
Is there any light weight telerik control that can be used to render html contents only.

Hello.
I made a detail row (group) in two grid views.
Both gridview data use the same data and have different outputs.
Here, i want both gridviews to expand equally in the same row when toggled.
(Otherwise, the data can be ignored. I want extended sync on the same data.)
I tried several searches such as RowDetailsVisibilityChanged, toggle style, toggle custom enable behavior, but nothing worked.
Attach the basic data. please help.
Thank you.
I'm scratching my head deep over this one..
GridView has a GridViewPinRowColumn which out of the box looks promising: it simply enables pinning of items to the top -- YAY !
BUT - i need to be able to refresh the grid with new instances of the data every now an then, so my mission is to retain the status of pinned items.
so i found this StyleStter which binds to a property on the item.
<Style TargetType="telerik:GridViewRow">
<Setter Property="IsPinned" Value="{Binding IsPinned, Mode=TwoWay}" />
</Style>There are SOME issues with this :
1. When the GridView renders the items, it resets IsPinned to FALSE !
2. GridView doesn't have an event that fires when all items are rendered !
Let's look at issue 1:
NotifyPropertyChanged turns this into a nightmare, because, when the GridView renders the items, it resets IsPinned, which effectively negates the option to store the value either on the item itself or an external list..
Issue 2:
Even IF is could store a list of IsPinned items, while reloading the Grid, there is no event that fires when items are finished rendering. Thereby making it more or less impossible to restore pinned status
One solution would require a change request: Dont reset IsPinned when rendering the items
Or - do you have another solution to this issue ?
Hi,
I used RadTimeSpanPicker, but I got a situation where I also needed a date.
So I want to use RadDateTimePicker as in the picture,
But with the RadTimeSpanPicker clock and not with the clock that RadDateTimePicker has.
I would be happy to help if this can be done and how
Thank you.