Hi,
my problem is that the slider clips my ticks, because he think they are to long.
Set ClipToBounds to false does not help to solve this issue.
Here is my code:
You can find a picture of the result as attached file.
Can anybody help me with this issue???
my problem is that the slider clips my ticks, because he think they are to long.
Set ClipToBounds to false does not help to solve this issue.
Here is my code:
<telerik:RadSlider Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Margin="25,0,25,10" Value="{Binding SlectedTimeSpan}" VerticalAlignment="Bottom" Minimum="0" Maximum="24" TickFrequency="8" TickPlacement="BottomRight" ClipToBounds="False" IsSnapToTickEnabled="True"> <telerik:RadSlider.TickTemplate> <DataTemplate> <StackPanel ClipToBounds="False"> <Ellipse Width="5" Height="5" Fill="Black" HorizontalAlignment="Center" /> <TextBlock Text="{Binding StringFormat=+{0} Std.}" HorizontalAlignment="Center" /> </StackPanel> </DataTemplate> </telerik:RadSlider.TickTemplate> </telerik:RadSlider>You can find a picture of the result as attached file.
Can anybody help me with this issue???