or
<Window x:Class="TestGrouping.MainWindow" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Title="MainWindow" Height="500" Width="500" WindowStartupLocation="CenterScreen" WindowStyle="ToolWindow" ResizeMode="NoResize"> <Grid> <telerik:RadGridView x:Name="TestGridView" IsReadOnly="True" ItemsSource="{Binding}" AutoGenerateColumns="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="5" RowIndicatorVisibility ="Collapsed" IsFilteringAllowed ="False" SelectionUnit="FullRow" SelectionMode="Single" ShowGroupPanel="True" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"> </telerik:RadGridView> </Grid> </Window>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; }}
