<UserControl x:Class="Aucma.Core.BoxFoam.Views.FoamMonitorPageView"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Aucma.Core.BoxFoam.Views"
             xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
             mc:Ignorable="d"     FontFamily="Microsoft YaHei"
             d:DesignHeight="1080" 
             d:DesignWidth="1920">
    
    <Border x:Name="HeightHelperPanel"  BorderBrush="#0288d1" BorderThickness="0" CornerRadius="5" Background="Transparent" Margin="5">
        <Grid>
            <Grid.Resources>
                <Style TargetType="TextBlock">
                    <Setter Property="VerticalAlignment" Value="Center"/>
                    <Setter Property="HorizontalAlignment" Value="Center"/>
                    <Setter Property="FontSize" Value="16"/>
                    <Setter Property="FontFamily" Value="Microsoft YaHei"/>
                </Style>
                <Style TargetType="Border">
                    <Setter Property="BorderBrush" Value="#0288d1"/>
                    <Setter Property="BorderThickness" Value="1"/>
                </Style>
            </Grid.Resources>
            <Grid.RowDefinitions>
                <RowDefinition/>
                <RowDefinition/>
            </Grid.RowDefinitions>
            <UniformGrid Grid.Row="0">
                <Grid>
                    <Grid.Resources>
                        <Style TargetType="TextBlock">
                            <Setter Property="VerticalAlignment" Value="Center"/>
                            <Setter Property="HorizontalAlignment" Value="Center"/>
                            <Setter Property="FontSize" Value="16"/>
                            <Setter Property="FontFamily" Value="Microsoft YaHei"/>
                        </Style>
                        <Style TargetType="Border">
                            <Setter Property="BorderBrush" Value="#0288d1"/>
                            <Setter Property="BorderThickness" Value="1"/>
                        </Style>
                    </Grid.Resources>
                    <Grid.RowDefinitions>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                        <RowDefinition/>
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="0.5*"/>
                        <ColumnDefinition Width="0.5*"/>
                        <ColumnDefinition Width="2*"/>
                        <ColumnDefinition/>
                        <ColumnDefinition/>
                        <ColumnDefinition Width="0.5*"/>
                        <ColumnDefinition Width="0.5*"/>
                        <ColumnDefinition Width="0.5*"/>
                        <ColumnDefinition Width="2*"/>
                        <ColumnDefinition/>
                        <ColumnDefinition/>
                        <ColumnDefinition Width="0.5*"/>
                    </Grid.ColumnDefinitions>
                    <Border Grid.Row="0" Grid.ColumnSpan="5" Background="#1157b9">
                        <TextBlock Text="发泡线(南)" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="1" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="夹具号" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="1" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="2" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="3" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="4" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="5" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="0" Background="#1157b9">
                        <TextBlock Text="6" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>


                    <Border Grid.Row="1" Grid.Column="1" Background="#1157b9">
                        <TextBlock Text="状态" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[0]}" StrokeThickness="1" Fill="{Binding StatusColor[0]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[1]}" StrokeThickness="1" Fill="{Binding StatusColor[1]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[2]}" StrokeThickness="1" Fill="{Binding StatusColor[2]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[3]}" StrokeThickness="1" Fill="{Binding StatusColor[3]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[4]}" StrokeThickness="1" Fill="{Binding StatusColor[4]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="1" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[5]}" StrokeThickness="1" Fill="{Binding StatusColor[5]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="2" Background="#1157b9">
                        <TextBlock Text="发泡型号" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="2" >
                        <TextBlock Text="{Binding FixtureName[0]}"   Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="2">
                        <TextBlock Text="{Binding FixtureName[1]}"  Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="2">
                        <TextBlock Text="{Binding FixtureName[2]}"  Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="2">
                        <TextBlock Text="{Binding FixtureName[3]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="2">
                        <TextBlock Text="{Binding FixtureName[4]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="2">
                        <TextBlock Text="{Binding FixtureName[5]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="3" Background="#1157b9">
                        <TextBlock Text="夹具产量" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="3" >
                        <TextBlock Text="{Binding Production[0]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="3">
                        <TextBlock Text="{Binding Production[1]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="3">
                        <TextBlock Text="{Binding Production[2]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="3">
                        <TextBlock Text="{Binding Production[3]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="3">
                        <TextBlock Text="{Binding Production[4]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="3">
                        <TextBlock Text="{Binding Production[5]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="0"  Grid.Column="5"  Grid.ColumnSpan="3" >
                        <TextBlock Text="{Binding Totle,Mode=TwoWay}" Foreground="White" FontSize="30" FontWeight="Bold"/>
                    </Border>
                    
                   

                    <Border Grid.Row="1" Grid.Column="4" Background="#1157b9">
                        <TextBlock Text="内外模温度" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="4" >
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[0]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[0]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="4">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[1]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[1]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="4">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[2]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[2]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="4">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[3]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[3]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="4">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[4]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[4]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="4">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[5]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[5]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="5" Background="#1157b9">
                        <TextBlock Text="节拍" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="5" >
                        <TextBlock Text="{Binding Beat[0]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="5">
                        <TextBlock Text="{Binding Beat[1]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="5">
                        <TextBlock Text="{Binding Beat[2]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="5">
                        <TextBlock Text="{Binding Beat[3]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="5">
                        <TextBlock Text="{Binding Beat[4]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="5">
                        <TextBlock Text="{Binding Beat[5]}" Foreground="White" FontSize="18"/>
                    </Border>

                    <Border Grid.Row="0" Grid.Column="8"  Grid.ColumnSpan="5" Background="#1157b9">
                        <TextBlock Text="发泡线(北)" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="夹具号" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="1" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="2" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="3" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="4" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="5" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="6" Background="#1157b9">
                        <TextBlock Text="6" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>


                    <Border Grid.Row="1" Grid.Column="7" Background="#1157b9">
                        <TextBlock Text="状态" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[6]}" StrokeThickness="1" Fill="{Binding StatusColor[6]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[7]}" StrokeThickness="1" Fill="{Binding StatusColor[7]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[8]}" StrokeThickness="1" Fill="{Binding StatusColor[8]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[9]}" StrokeThickness="1" Fill="{Binding StatusColor[9]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[10]}" StrokeThickness="1" Fill="{Binding StatusColor[10]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="7" >
                        <Path  Data="M 5,5 A 15,15 45 1 1 0,1 Z" Stroke="{Binding StatusColor[11]}" StrokeThickness="1" Fill="{Binding StatusColor[11]}" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="8" Background="#1157b9">
                        <TextBlock Text="发泡型号" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="8" >
                        <TextBlock Text="{Binding FixtureName[6]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="8" >
                        <TextBlock Text="{Binding FixtureName[7]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="8" >
                        <TextBlock Text="{Binding FixtureName[8]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="8">
                        <TextBlock Text="{Binding FixtureName[9]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="8"  >
                        <TextBlock Text="{Binding FixtureName[10]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="8"  >
                        <TextBlock Text="{Binding FixtureName[11]}"  Foreground="White" FontSize="18"/>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="9" Background="#1157b9">
                        <TextBlock Text="夹具产量" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="9" >
                        <TextBlock Text="{Binding Production[6]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="9">
                        <TextBlock Text="{Binding Production[7]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="9">
                        <TextBlock Text="{Binding Production[8]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="9">
                        <TextBlock Text="{Binding Production[9]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="9">
                        <TextBlock Text="{Binding Production[10]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="9">
                        <TextBlock Text="{Binding Production[11]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>


                    <Border Grid.Row="1" Grid.Column="10" Background="#1157b9">
                        <TextBlock Text="内外模温度" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="10" >
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[6]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[6]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="10">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[7]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[7]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="10">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[8]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[8]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="10">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[9]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[9]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="10">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[10]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[10]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="10">
                        <WrapPanel VerticalAlignment="Center" HorizontalAlignment="Center">
                            <TextBlock Text="{Binding InternalTemperature[11]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="|" Foreground="White" FontSize="18" FontWeight="Bold"/>
                            <TextBlock Text="{Binding OutsideTemperature[11]}" Foreground="White" FontSize="18" FontWeight="Bold"/>
                        </WrapPanel>
                    </Border>

                    <Border Grid.Row="1" Grid.Column="11" Background="#1157b9">
                        <TextBlock Text="节拍" Foreground="White" FontSize="18" FontWeight="Bold"/>
                    </Border>
                    <Border Grid.Row="2" Grid.Column="11" >
                        <TextBlock Text="{Binding Beat[6]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="3" Grid.Column="11">
                        <TextBlock Text="{Binding Beat[7]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="4" Grid.Column="11">
                        <TextBlock Text="{Binding Beat[8]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="5" Grid.Column="11">
                        <TextBlock Text="{Binding Beat[9]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="6" Grid.Column="11">
                        <TextBlock Text="{Binding Beat[10]}" Foreground="White" FontSize="18"/>
                    </Border>
                    <Border Grid.Row="7" Grid.Column="11">
                        <TextBlock Text="{Binding Beat[11]}" Foreground="White" FontSize="18"/>
                    </Border>
                </Grid>
            </UniformGrid>
            <UniformGrid Grid.Row="1">
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition/>
                        <ColumnDefinition/>
                    </Grid.ColumnDefinitions>
                    <UniformGrid Grid.Column="0">
                        <Grid Margin="10,10">
                            <lvc:CartesianChart Series="{Binding Achievement, UpdateSourceTrigger=PropertyChanged}"  LegendLocation="Top" Foreground="White" DisableAnimations="True">
                                <lvc:CartesianChart.DataTooltip >
                                    <lvc:DefaultTooltip SelectionMode="OnlySender"  BulletSize="10" Foreground="Black"></lvc:DefaultTooltip>
                                </lvc:CartesianChart.DataTooltip>
                                <lvc:CartesianChart.AxisX>
                                    <lvc:Axis Labels="{Binding ProductionHourList}" FontSize="12" LabelsRotation="0"  DisableAnimations="True" Position="LeftBottom" Foreground="White">
                                        <lvc:Axis.Separator>
                                            <lvc:Separator Visibility="Hidden" Step="1" StrokeThickness="1.5" StrokeDashArray="0" Stroke="#404F56" >
                                            </lvc:Separator>
                                        </lvc:Axis.Separator>
                                    </lvc:Axis>
                                </lvc:CartesianChart.AxisX>
                                <lvc:CartesianChart.AxisY>
                                    <lvc:Axis FontSize="18" Foreground="White" >
                                        <lvc:Axis.Separator>
                                            <lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3"  Stroke="#404F56" >
                                            </lvc:Separator>
                                        </lvc:Axis.Separator>
                                    </lvc:Axis>
                                </lvc:CartesianChart.AxisY>
                            </lvc:CartesianChart>
                        </Grid>
                    </UniformGrid>
                    <UniformGrid Grid.Column="1">
                        <Grid Margin="10,10">
                            <lvc:CartesianChart LegendLocation="Top"   Series="{Binding ModelStatistics, UpdateSourceTrigger=PropertyChanged}" Foreground="White" DisableAnimations="True">
                                <lvc:CartesianChart.DataTooltip>
                                    <lvc:DefaultTooltip BulletSize="10" Foreground="Black"></lvc:DefaultTooltip>
                                </lvc:CartesianChart.DataTooltip>
                                <lvc:CartesianChart.AxisX>
                                    <lvc:Axis Labels="{Binding MaterialNameList}" FontSize="12" Foreground="White">
                                        <lvc:Axis.Separator>
                                            <lvc:Separator  Step="1" Visibility="Hidden" StrokeThickness="1.5" StrokeDashArray="0" Stroke="#404F56" >
                                            </lvc:Separator>
                                        </lvc:Axis.Separator>
                                    </lvc:Axis>
                                </lvc:CartesianChart.AxisX>
                                <lvc:CartesianChart.AxisY>
                                    <lvc:Axis FontSize="18" Foreground="White">
                                        <lvc:Axis.Separator>
                                            <lvc:Separator Visibility="Hidden" StrokeThickness="1" StrokeDashArray="3"   Stroke="#404F56" >
                                            </lvc:Separator>
                                        </lvc:Axis.Separator>
                                    </lvc:Axis>
                                </lvc:CartesianChart.AxisY>
                            </lvc:CartesianChart>
                        </Grid>
                    </UniformGrid>
                </Grid>
            </UniformGrid>
        </Grid>
    </Border>

</UserControl>