SpectrumWaterfallMonitor 0.1.0

dotnet add package SpectrumWaterfallMonitor --version 0.1.0
                    
NuGet\Install-Package SpectrumWaterfallMonitor -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SpectrumWaterfallMonitor" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SpectrumWaterfallMonitor" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="SpectrumWaterfallMonitor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SpectrumWaterfallMonitor --version 0.1.0
                    
#r "nuget: SpectrumWaterfallMonitor, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package SpectrumWaterfallMonitor@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SpectrumWaterfallMonitor&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=SpectrumWaterfallMonitor&version=0.1.0
                    
Install as a Cake Tool

SpectrumWaterfallMonitor for WPF

SpectrumWaterfallMonitor provides two lightweight WPF controls for spectrum-style visualizations:

  • SpectrumControl renders the current frame as a line graph
  • WaterfallControl renders frame history as a scrolling waterfall

The package is meant to stay out of the way: your application owns the data source, and the controls only deal with presentation.

Installation

dotnet add package SpectrumWaterfallMonitor

Quick Start

<Window
    xmlns:spectrum="clr-namespace:SpectrumWaterfallMonitor.Controls.Spectrum;assembly=SpectrumWaterfallMonitor.Controls"
    xmlns:waterfall="clr-namespace:SpectrumWaterfallMonitor.Controls.Waterfall;assembly=SpectrumWaterfallMonitor.Controls">

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="2*" />
            <RowDefinition Height="3*" />
        </Grid.RowDefinitions>

        <spectrum:SpectrumControl
            SpectrumFrame="{Binding CurrentFrame}" />

        <waterfall:WaterfallControl
            Grid.Row="1"
            HistoryLineCount="256"
            SpectrumFrame="{Binding CurrentFrame}" />
    </Grid>
</Window>

CurrentFrame should be a SpectrumWaterfallMonitor.Core.Models.SpectrumFrame instance that your application updates over time.

Common Options

SpectrumControl

  • BackgroundBrush
  • GridBrush
  • LineBrush
  • RiseSmoothing
  • FallSmoothing

WaterfallControl

  • HistoryLineCount
  • DisplayMinimumPowerDbm
  • DisplayMaximumPowerDbm
  • DitherDb
  • Gamma
  • ZoomFactor
  • PanX

Included Types

  • SpectrumWaterfallMonitor.Controls.Spectrum.SpectrumControl
  • SpectrumWaterfallMonitor.Controls.Waterfall.WaterfallControl
  • SpectrumWaterfallMonitor.Core.Models.SpectrumFrame
  • SpectrumWaterfallMonitor.Core.Generation.SpectrumGenerator
  • SpectrumWaterfallMonitor.Core.Generation.SpectrumGeneratorOptions
  • SpectrumWaterfallMonitor.Core.Generation.SpectrumPeakOptions

Notes

  • SpectrumWaterfallMonitor.Core ships inside the package as an implementation dependency.
  • The demo project in this repository is a good reference if you want to wire the controls to a timer-driven or simulated source first.
Product Compatible and additional computed target framework versions.
.NET net10.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 94 5/23/2026