or
Hi,
Is there a control for just displaying the tick marks (with labels) that you would normally see attached to a slider control? I was hoping RadTickBar would do it, but the documentation doesn't seem to elaborate on whether it's possible to use it on its own or not.
James
<
telerik:RadExpander IsExpanded="True" Cursor="Hand">


<telerik:RadCartesianChart x:Name="RadChart1" Palette="Metro" HorizontalAlignment="Right" VerticalAlignment="Top" Width="1000" Height="400"> <telerik:BarSeries ItemsSource="{Binding Data}" ValueBinding="Data"/> <telerik:RadCartesianChart.HorizontalAxis> <chartView:CategoricalAxis MajorTickInterval="250" GapLength="0.00001"/> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis LabelFormat="0"/> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.Grid> <telerik:CartesianChartGrid MajorLinesVisibility="Y" /> </telerik:RadCartesianChart.Grid></telerik:RadCartesianChart>public class ChartData{ public int Index { get; set; } public int Data { get; set; }}
