Skip to content

Commit

Permalink
collector for welch and amp
Browse files Browse the repository at this point in the history
  • Loading branch information
tesar-tech committed Jul 8, 2024
1 parent 193b8f0 commit d5edc04
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions TremAn3/Views/FreqCounterUc.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,9 @@
<StackPanel Orientation="Vertical">
<oxyplot:PlotView DefaultTrackerTemplate="{StaticResource TrackerTemplate}" Tag="{x:Bind core:DataSeriesType.Welch}"
Height="{x:Bind h:StaticConverters.SpectralAnalysisBiggerToggleToSizeOfPlot(SpectralAnalysisToggleBigger.IsChecked),Mode=OneWay}"
Model="{x:Bind ViewModel.PlotModelsContainerViewModel.GetPlotModelByDsTypeOrCreateNew(core:DataSeriesType.Welch ), Mode=OneWay}" />
Model="{x:Bind ViewModel.PlotModelsContainerViewModel.GetPlotModelByDsTypeOrCreateNew(core:DataSeriesType.Welch ), Mode=OneWay}"
PointerPressed="PlotView_PointerPressed"
/>
<local:PointsCollectorView ViewModel="{x:Bind ViewModel.CurrentGlobalScopedResultsViewModel.GetPointsCollectorVm(core:DataSeriesType.Welch ), Mode=OneWay}"/>
</StackPanel>
</mux:TabViewItem>
Expand All @@ -275,7 +277,9 @@
<oxyplot:PlotView x:Name="AmpSpecPlotView" Tag="{x:Bind core:DataSeriesType.AmpSpec}"
DefaultTrackerTemplate="{StaticResource TrackerTemplate}"
Height="{x:Bind h:StaticConverters.SpectralAnalysisBiggerToggleToSizeOfPlot(SpectralAnalysisToggleBigger.IsChecked),Mode=OneWay}"
Model="{x:Bind ViewModel.PlotModelsContainerViewModel.GetPlotModelByDsTypeOrCreateNew(core:DataSeriesType.AmpSpec ), Mode=OneWay}" />
Model="{x:Bind ViewModel.PlotModelsContainerViewModel.GetPlotModelByDsTypeOrCreateNew(core:DataSeriesType.AmpSpec ), Mode=OneWay}"
PointerPressed="PlotView_PointerPressed"
/>
<local:PointsCollectorView ViewModel="{x:Bind ViewModel.CurrentGlobalScopedResultsViewModel.GetPointsCollectorVm(core:DataSeriesType.AmpSpec ), Mode=OneWay}"/>
</StackPanel>
</mux:TabViewItem>
Expand Down

0 comments on commit d5edc04

Please sign in to comment.