|
|
|
|
@ -678,6 +678,16 @@
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
<Style x:Key="CollpaseWhenLineAndNotTank" TargetType="FrameworkElement" BasedOn="{StaticResource {x:Type FrameworkElement}}">
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Filter">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Sterilizer">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
</Grid.Resources>
|
|
|
|
|
|
|
|
|
|
<!-- LINE -->
|
|
|
|
|
@ -767,11 +777,11 @@
|
|
|
|
|
<StackPanel Style="{StaticResource VisibleWhenScatter}">
|
|
|
|
|
<Grid Margin="0 0 0 10">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition Width="110"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="Y축" VerticalAlignment="Center" Width="80"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream5}" Foreground="White"/>
|
|
|
|
|
<TextBlock Text="Y축" VerticalAlignment="Center"
|
|
|
|
|
FontSize="18" FontFamily="{StaticResource SCDream4}" Foreground="White"/>
|
|
|
|
|
<ComboBox ItemsSource="{Binding YFieldCandidates}"
|
|
|
|
|
SelectedItem="{Binding SelectedYField}"
|
|
|
|
|
DisplayMemberPath="Display" Height="35"
|
|
|
|
|
@ -782,18 +792,18 @@
|
|
|
|
|
|
|
|
|
|
<Grid Margin="0 0 0 10">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="80"/>
|
|
|
|
|
<ColumnDefinition Width="110"/>
|
|
|
|
|
<ColumnDefinition/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<TextBlock Text="마커 크기" Grid.Row="1" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream5}" Foreground="White"/>
|
|
|
|
|
<Slider Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" Margin="15 0 0 0"
|
|
|
|
|
<TextBlock Text="마커 크기" VerticalAlignment="Center"
|
|
|
|
|
FontSize="18" FontFamily="{StaticResource SCDream5}" Foreground="White"/>
|
|
|
|
|
<Slider Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="15 0 0 0"
|
|
|
|
|
Minimum="1" Maximum="15" Value="{Binding ScatterMarkerSize}" Width="280" IsSnapToTickEnabled="True" TickFrequency="1"
|
|
|
|
|
Style="{StaticResource CustomSliderStyle}"/>
|
|
|
|
|
<TextBlock Text="{Binding ScatterMarkerSize}" Margin="15 0"
|
|
|
|
|
Grid.Row="1" Grid.Column="2" VerticalAlignment="Center"
|
|
|
|
|
FontSize="20" FontFamily="{StaticResource SCDream3}" Foreground="White"/>
|
|
|
|
|
Grid.Column="2" VerticalAlignment="Center"
|
|
|
|
|
FontSize="18" FontFamily="{StaticResource SCDream3}" Foreground="White"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
@ -855,14 +865,41 @@
|
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1">
|
|
|
|
|
<StackPanel Orientation="Horizontal" Grid.Row="1" Margin="24 0 0 0">
|
|
|
|
|
<CheckBox IsChecked="{Binding ShowLegends}"
|
|
|
|
|
Foreground="#264A60"
|
|
|
|
|
Margin="24 0 4 0" VerticalContentAlignment="Center"
|
|
|
|
|
Style="{StaticResource MaterialDesignUserForegroundCheckBox}"/>
|
|
|
|
|
Margin="0 0 4 0" VerticalContentAlignment="Center">
|
|
|
|
|
<CheckBox.Style>
|
|
|
|
|
<Style TargetType="CheckBox" BasedOn="{StaticResource MaterialDesignUserForegroundCheckBox}">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Filter">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Sterilizer">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
</CheckBox.Style>
|
|
|
|
|
</CheckBox>
|
|
|
|
|
<TextBlock Text="범례" VerticalAlignment="Center" Margin="0 0 12 0"
|
|
|
|
|
FontSize="16" FontFamily="{StaticResource SCDream3}"
|
|
|
|
|
Foreground="#999999" />
|
|
|
|
|
Foreground="#999999">
|
|
|
|
|
<TextBlock.Style>
|
|
|
|
|
<Style TargetType="TextBlock">
|
|
|
|
|
<Setter Property="Visibility" Value="Visible"/>
|
|
|
|
|
<Style.Triggers>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Filter">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
<DataTrigger Binding="{Binding SelectedTab}" Value="Sterilizer">
|
|
|
|
|
<Setter Property="Visibility" Value="Collapsed"/>
|
|
|
|
|
</DataTrigger>
|
|
|
|
|
</Style.Triggers>
|
|
|
|
|
</Style>
|
|
|
|
|
</TextBlock.Style>
|
|
|
|
|
</TextBlock>
|
|
|
|
|
|
|
|
|
|
<CheckBox IsChecked="{Binding ShowMarkers}"
|
|
|
|
|
Foreground="#264A60"
|
|
|
|
|
@ -899,7 +936,7 @@
|
|
|
|
|
</TextBlock.Style>
|
|
|
|
|
</TextBlock>
|
|
|
|
|
|
|
|
|
|
<CheckBox Content="회귀선" IsChecked="{Binding ShowRegression}"
|
|
|
|
|
<CheckBox IsChecked="{Binding ShowRegression}"
|
|
|
|
|
Foreground="#264A60"
|
|
|
|
|
Margin="0 0 4 0" VerticalContentAlignment="Center">
|
|
|
|
|
<CheckBox.Style>
|
|
|
|
|
|