Won't Fix
Last Updated: 26 Jan 2024 17:12 by ADMIN
Created by: Matthew
Comments: 1
Category: TimeBar
Type: Bug Report
0
Custom Interval disappears when zooming out. This is caused when the view is updated and there is more than one custom interval.
Completed
Last Updated: 07 Apr 2023 07:56 by ADMIN
Release LIB 2023.1.407 (7 Apr 2023)
When DateTime.MinValue is set as a value to the PeriodStart property, zooming out will result in an ArgumentOutOfRangeException. The same exception is thrown when the value of the PeriodEnd is lower than the zoom-in step.
Completed
Last Updated: 29 May 2020 12:31 by ADMIN
Release LIB 2020.2.6.01 (1.6.2020)
When you select a time span at the beginning of the period, the left thumb is not visible. Issue is reproducible with our Fluent theme.
Declined
Last Updated: 03 Jul 2017 07:31 by ADMIN
When SelectionEnd is equal to PeriodEnd, and PeriodEnd is at midnight (00:00:00), then selection title shows incorrect selection end.

To reproduce consider the following xaml:
    <telerik:RadTimeBar PeriodStart="1-Jan-2010 12:00:00 AM" 
                        PeriodEnd="31-Dec-2011 00:00:00 AM"
                        
                        SelectionStart="1-Jan-2010 12:00:00 AM" 
                        SelectionEnd="31-Dec-2011 00:00:00 AM"
                        
                        SelectionTitleFormatString="{}{0} - {1}"
                        />

PeriodEnd == SelectionEnd == 31-Dec-2011 00:00:00 AM, but title is: "01/01/2010 00:00:00 - 30/12/2011 23:59:59"

As in our app we display date with "dd MMM yyyy" format, the displayed selection end differs by one day from the real one, which is a serious issue.


Unplanned
Last Updated: 06 Mar 2017 09:03 by ADMIN
The values of VisiblePeriodStart and VisiblePeriodEnd properties are not respected after runtime theme change. 
Completed
Last Updated: 11 Jan 2024 08:20 by ADMIN
Release R2 2023
If the PeriodStart and VisiblePeriodStart is set to DateTime.MinValue zooming out using mouse wheel causes a crash. DateTime.Subract(TimeSpan value) method throws "ArgumentOutOfRangeException();". Looks like "TimeBarBase.CalculateLeftRightStep(this.SmallChange, centerOffsetPercentage, out leftStep, out rightStep);" does not calculate leftStep correctly.
Completed
Last Updated: 25 Mar 2016 15:09 by ADMIN
When click and keep the mouse button down into the RadTimebar control and at the same time tap outside the application, InvalidOperationException is thrown.
The issue is reproducible on Window 7 OS.

Fix available in LIB Version 2016.1.328.
Completed
Last Updated: 09 Oct 2014 14:15 by ADMIN
The value of the MinZoomRange property is incorrect after changing the the PeriodStart and PeriodEnd from code-behind.

Fixed in Q3 2014
Completed
Last Updated: 18 Oct 2019 05:29 by ADMIN
Release R3 2019 SP1
ADMIN
Created by: Tsvetie
Comments: 0
Category: TimeBar
Type: Bug Report
1
RadTimeBar throws XamlParseException when current culture is arabic.

Workaround: Create a custom class that inherits from Telerik.Windows.Controls.TimeBar.SelectionThumb and explicitly sets the TitleFormatString property to your custom format string in the constructor. Edit the Template of the RadTimeBar control - find the SelectionThumb instance in the template and replace it with an instance of the CustomSelectionThumb class.
Declined
Last Updated: 11 Aug 2016 14:05 by ADMIN
The selection element does not always show the correct range in MVVM scenarios, in which the view model validates the range. The problem is only present in WPF.