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>