This question is locked. New answers and comments are not allowed.
Hi,
I am using following code in .xml as below,
and I am setting it's frequence by code behind file as
when i run application i am getting out put as attatched file, end values getting overlap, so how can i avoid overriding of values or any code to hide start and end values of slider.
Thanks,
Bhanudas
I am using following code in .xml as below,
<telerik:RadSlider x:Name="radSlider" Visibility="Collapsed" TickPlacement="TopLeft" IsDirectionReversed="False" IsMouseWheelEnabled="True" Style="{StaticResource RadSliderStyle1}" IsMoveToPointEnabled="True" HandlesVisibility="Visible" StepAction="MoveRange" Width="Auto" Height="Auto" IsSelectionRangeEnabled="True"> <telerik:RadSlider.TickTemplate> <DataTemplate> <Grid> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Ellipse Width="2" Height="5" Fill="Black" Grid.Row="1" /> <TextBlock Text="{Binding StringFormat=\{0:N0\}}" FontSize="11" TextAlignment="Center" /> </Grid> </DataTemplate> </telerik:RadSlider.TickTemplate> </telerik:RadSlider>and I am setting it's frequence by code behind file as
radSlider.Minimum = 93; radSlider.Maximum = 375; radSlider.TickFrequency = 20; radSlider.SmallChange = 10; radSlider.SelectionStart = 93; radSlider.SelectionEnd = 375; Thanks,
Bhanudas
