or
<HierarchicalDataTemplate x:Key="MenuItemTemplate" ItemsSource="{Binding Items}"> <TextBlock Text="{Binding Text}" cal:Message.Attach="[Event PreviewMouseDown] = [Action OpenView($dataContext)]" cal:Action.TargetWithoutContext="{Binding}" /> </HierarchicalDataTemplate><telerik:RadMenu x:Name="MenuList" ClickToOpen="False" BorderBrush="Transparent" ItemsSource="{Binding Items}" ItemTemplate="{StaticResource MenuItemTemplate}"> <telerik:RadMenu.ItemContainerStyle> <Style TargetType="telerik:RadMenuItem"> <Setter Property="Visibility" Value="{Binding IsVisible,Converter={StaticResource booleanConverter}}"></Setter> </Style> </telerik:RadMenu.ItemContainerStyle> <!--ItemsSource="{Binding Items}" ItemTemplate="{StaticResource MenuItemTemplate}"--> </telerik:RadMenu>| <Style TargetType="telerik:GridViewRow" x:Key="OrderItemStyle"> |
| <Setter Property="dragDrop:RadDragAndDropManager.AllowDrop" Value="True" /> |
| <Setter Property="dragDrop:RadDragAndDropManager.DropQueryEvent" Value="OnRowDropQuery" /> |
| <Setter Property="dragDrop:RadDragAndDropManager.AllowDrag" Value="True" /> |
| </Style> |
<telerik:RadGridView Background="Black" HorizontalContentAlignment="Center" Loaded="GridView_Loaded" BorderThickness="0" AutoGenerateColumns="False" Grid.Row="0" x:Name="GridView" EditTriggers="None" CanUserDeleteRows="False" Foreground="White" SelectionChanged="GridView_SelectionChanged" RowIndicatorVisibility="Collapsed">
Good Morning,
I am happy with the min and max values the AutoRange is providing for the Y-Axis for my line chart but the AutoRange has a step of 20 and I prefer 10.
Is it possible to set a manual step if setting AutoRange to true?
Furthermore, is it possible to set a max value for the AutoRange to use, as I notice the y range ends a little higher than it really needs to? For example, the Y-Axis range may start at 0 and end at 15 when it really only needs to end at 10, as the highest Y value is 9.5.
Thank you in advance,
David.