Hello!
Could you tell me how to adjust the crosshairs so that it shifted to a discrete value (for example a multiple of 0.25) for the "Y" axis (for example, 1 minute) on the X axis.
<telerik:RadCartesianChart Grid.Row="1" Background="{x:Null}"> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis x:Name="AxisY" HorizontalLocation="Right" LineThickness="1" SmartLabelsMode="SmartStepAndRange" MajorStep="1" /> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.HorizontalAxis> <telerik:DateTimeCategoricalAxis x:Name="AxisX" LabelFormat="HH:mm" LabelFitMode="Rotate" SmartLabelsMode="SmartStep" PlotMode="OnTicksPadded" /> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.Behaviors> <telerik:ChartCrosshairBehavior HorizontalLineLabelDefinition="{DynamicResource ChartAnnotationLabelDefinitionHorizontal}" VerticalLineLabelDefinition="{DynamicResource ChartAnnotationLabelDefinitionVertical}" PositionChanged="ChartCrosshairBehavior_PositionChanged" /> </telerik:RadCartesianChart.Behaviors> <telerik:CandlestickSeries x:Name="csPrice" ZIndex="1" ItemsSource="{Binding Candles}" CloseBinding="ClosePrice" CategoryBinding="Date" HighBinding="HighPrice" LowBinding="LowPrice" OpenBinding="OpenPrice" AllowSelect="True" DefaultVisualStyle="{DynamicResource CandleStikSeriesDefaultStyle}" DefaultVisualStyleSelector="{Binding Mode=OneWay, Source={StaticResource CandleStikSeriesSelectStyle}}" /> </telerik:RadCartesianChart>