<Grid  Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2">
            <Grid.RowDefinitions></Grid.RowDefinitions>
            <Grid Grid.Row="0">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width=".65*"></ColumnDefinition>
                    <ColumnDefinition Width=".35*"></ColumnDefinition>
                </Grid.ColumnDefinitions>

                <Border BorderThickness="0" CornerRadius="7" Margin="0,0,10,0" Padding="0" Grid.Row="0" Grid.Column="0" VerticalAlignment="Top" HorizontalAlignment="Left"  Style="{StaticResource LightBorderGrid}">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition Height="40" />
                            <RowDefinition />
                        </Grid.RowDefinitions>
                        <StackPanel Margin="0,0,0,0" Orientation="Horizontal">
                            <TextBlock Text="Review Rate"  Style="{StaticResource tbHeaderStyle}" HorizontalAlignment="Left" ></TextBlock>
                            <StackPanel Orientation="Vertical" Margin="4,0,0,0">
                                <TextBlock Text="actual"  Style="{StaticResource tbHeaderStyleLow}" Margin="0,10,0,0" VerticalAlignment="Top"  HorizontalAlignment="Center" ></TextBlock>
                                <Rectangle Fill="SkyBlue" Width="35" Height="3" ></Rectangle>
                            </StackPanel>
                            <TextBlock Text="vs" Style="{StaticResource tbHeaderStyleLow}" Margin="3,10,3,0"    VerticalAlignment="Top"  HorizontalAlignment="Center"></TextBlock>
                            <StackPanel Orientation="Vertical" Margin="4,0,0,0">
                                <TextBlock Text="average" Style="{StaticResource tbHeaderStyleLow}" Margin="0,10,0,0"  VerticalAlignment="Top"  HorizontalAlignment="Center"></TextBlock>
                                <Rectangle Fill="Green" Width="50" Height="3" ></Rectangle>
                            </StackPanel>
                        </StackPanel>
                        <!--SizeChanged="tempBorder_SizeChanged"-->
                        <Border Grid.Row="1" CornerRadius="7" BorderThickness="0" x:Name="tempBorder" Style="{StaticResource BorderinnerContent}" Padding="5,5,5,5" Margin="0,10,0,0">
                            <telerik:RadChart x:Name="rcReviewBatch" BorderThickness="0" Background="Transparent" LegendStyle="{StaticResource ChartLegendStyle}"   VerticalAlignment="Stretch" HorizontalAlignment="Stretch"  Grid.Row="0" Grid.Column="0" Margin="2">
                                <telerik:RadChart.DefaultView>
                                    <telerik:ChartDefaultView>
                                        <telerik:ChartDefaultView.ChartArea>
                                            <telerik:ChartArea ItemToolTipOpening="rcReviewBatch_ItemToolTipOpening">
                                                <telerik:ChartArea.Annotations>
                                                    <telerik:CustomGridLine YIntercept="15"  Stroke="Green" StrokeThickness="4" />
                                                </telerik:ChartArea.Annotations>
                                            </telerik:ChartArea>
                                        </telerik:ChartDefaultView.ChartArea>
                                    </telerik:ChartDefaultView>
                                </telerik:RadChart.DefaultView>
                                <chart:RadChart.DefaultSeriesDefinition>
                                    <charting:LineSeriesDefinition  ShowPointMarks="True"  ShowItemToolTips="True" ShowItemLabels="False">
                                        <charting:LineSeriesDefinition.Appearance>
                                            <charting:SeriesAppearanceSettings StrokeThickness="4"></charting:SeriesAppearanceSettings>
                                        </charting:LineSeriesDefinition.Appearance>
                                    </charting:LineSeriesDefinition>
                                </chart:RadChart.DefaultSeriesDefinition>
                            </telerik:RadChart>
                        </Border>
                    </Grid>
                </Border>
                
                
                <Border BorderThickness="0" CornerRadius="7" Margin="0,0,10,0" Padding="0" Grid.Row="0" Grid.Column="1" VerticalAlignment="Top" HorizontalAlignment="Left" Style="{StaticResource LightBorderGrid}">

                    <Grid >
                        <Grid.RowDefinitions>
                            <RowDefinition></RowDefinition>
                            <RowDefinition></RowDefinition>
                        </Grid.RowDefinitions>
                        <TextBlock x:Name="tbStatistics" Text="Statistics" Style="{StaticResource tbHeaderStyle}" VerticalAlignment="Top" HorizontalAlignment="Left" Grid.Row="0"  ></TextBlock>
                        <Border BorderThickness="0" CornerRadius="7" Margin="0,10,0,0" Padding="5,5,5,5" Grid.Row="1" VerticalAlignment="Top" HorizontalAlignment="Left" Style="{StaticResource BorderinnerContent}">
                            <Grid x:Name="stkpnlStatistics" Grid.Row="1"  Margin="0"  >
                                <Grid.RowDefinitions>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                    <RowDefinition></RowDefinition>
                                </Grid.RowDefinitions>
                                <TextBlock Grid.Row="0" Text="{Binding strTotalDocs}" Style="{StaticResource tbContentStyle}" Width="Auto"/>
                                <TextBlock Grid.Row="1" Text="{Binding strAssignedDocs}" Style="{StaticResource tbContentStyle}" Width="Auto" />
                                <TextBlock Grid.Row="2" Text="{Binding strUnAssignedDocs}"  Style="{StaticResource tbContentStyle}" Width="Auto"/>
                                <TextBlock Grid.Row="3" Text="{Binding strReviewedDocs}" Style="{StaticResource tbContentStyle}" Width="Auto"  />
                                <TextBlock Grid.Row="4" Text="{Binding strNoOfReviewer}"  Style="{StaticResource tbContentStyle}" Width="Auto" />
                                <TextBlock Grid.Row="5" Text="{Binding strAssignedDate}" Style="{StaticResource tbContentStyle}" Width="Auto"/>
                                <TextBlock Grid.Row="6" Text="{Binding strAssignedBy}"  Style="{StaticResource tbContentStyle}" Width="Auto"  />
                                <TextBlock Grid.Row="7" Text="{Binding strExpectedComletionDate}"  Style="{StaticResource tbContentStyle}" Width="Auto" />
                                <TextBlock Grid.Row="8" Text="{Binding strReviewRate}" Style="{StaticResource tbContentStyle}" Width="Auto" />
                            </Grid>

                        </Border>
                    </Grid>
                </Border>

            </Grid>
        </Grid>