or
| <StatusBar DockPanel.Dock="Bottom" telerik:StyleManager.Theme="Office_Blue"> |
| <StatusBar.ItemsPanel> |
| <ItemsPanelTemplate> |
| <Grid> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="*"/> |
| <ColumnDefinition Width="Auto"/> |
| </Grid.ColumnDefinitions> |
| </Grid> |
| </ItemsPanelTemplate> |
| </StatusBar.ItemsPanel> |
| <TextBlock>Left Side</TextBlock> |
| <StatusBarItem Grid.Column="1"> |
| <TextBlock>Right Side</TextBlock> |
| </StatusBarItem> |
| </StatusBar> |
Hi,
I followed more or less the example "Special and Read-only Slots"
in order to achieve the desired behavior (show working hours in a different color).
As you can see in the first screen shot (sched01.png), everything works fine.
As soon as I use custom grouping, the working hours are no more visible (see sched02.png).
After deselecting the group item (here: Zimmer 315), the working hours for the selected person are displayed again.
Your help is highly appreciated.
Regards,
Daniel
GroupDescriptor descriptor = new GroupDescriptor();
descriptor.Member = "Location";
rgLFields.GroupDescriptors.Add(descriptor);
Regards,
YS
<chart:RadCartesianChart.Behaviors> <chartView:ChartPanAndZoomBehavior ZoomMode="Horizontal" /> <chartView:ChartTrackBallBehavior ShowTrackInfo="True" ShowIntersectionPoints="True" TrackInfoUpdated="trackBallInfoUpdated" /></chart:RadCartesianChart.Behaviors>private void trackBallInfoUpdated(object sender, TrackBallInfoEventArgs e){ // exploring TrackBallInfoUpdated event ... foreach (var info in e.Context.DataPointInfos) { info.DisplayContent = "DataItem=" + info.DataPoint.DataItem; } e.Header = "Test Header";}-----Error 5 The type or namespace name 'Windows' does not exist in the namespace 'Spike.Telerik' (are you missing an assembly reference?) C:\Users\Jesper\Documents\Visual Studio 2010\Projects\Spike.Telerik.RadChartView\GvsDefectsChartControl.xaml 66 23 Spike.Telerik.RadChartView-----Error 6 The type or namespace name 'Windows' does not exist in the namespace 'Spike.Telerik' (are you missing an assembly reference?) C:\Users\Jesper\Documents\Visual Studio 2010\Projects\Spike.Telerik.RadChartView\GvsDefectsChartControl.xaml 66 135 Spike.Telerik.RadChartView-----Error 7 No overload for 'EventHandler' matches delegate 'System.EventHandler<Windows.Controls.ChartView.TrackBallInfoEventArgs>' C:\Users\Jesper\Documents\Visual Studio 2010\Projects\Spike.Telerik.RadChartView\GvsDefectsChartControl.xaml 66 103 Spike.Telerik.RadChartView