This question is locked. New answers and comments are not allowed.
I'm trying to create a RadTimeBar, but the date texts are not showing. They show up in design time, but not when I run the control.
Here is the xaml:
Here is the xaml:
<telerik:RadTimeBar x:Name="RadTimeBar1" Grid.Row="0" Height="150" PeriodStart="2000-01-01" PeriodEnd="2011-12-31" VisiblePeriodStart="2000-07-01" VisiblePeriodEnd="2001-07-31" SelectionStart="{Binding FromDate, Mode=TwoWay}" SelectionEnd="{Binding EndDate, Mode=TwoWay}" IsSnapToIntervalEnabled="True" > <telerik:RadTimeBar.Intervals> <telerik:YearInterval /> <telerik:MonthInterval /> <telerik:WeekInterval /> <telerik:DayInterval /> </telerik:RadTimeBar.Intervals> <telerik:RadLinearSparkline Margin="0,3" ItemsSource="{Binding DueDateGraphData}" XValuePath="DueDate" YValuePath="NoOfJobsDue" /> <i:Interaction.Triggers> <i:EventTrigger EventName="SelectionChanged"> <mvvmlightcmd:EventToCommand Command="{Binding SelectionChangedCommand}" /> </i:EventTrigger> </i:Interaction.Triggers> </telerik:RadTimeBar>