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" />
<PackageReference Include="SpectrumWaterfallMonitor" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=SpectrumWaterfallMonitor&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SpectrumWaterfallMonitor for WPF
SpectrumWaterfallMonitor provides two lightweight WPF controls for spectrum-style visualizations:
SpectrumControlrenders the current frame as a line graphWaterfallControlrenders 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
BackgroundBrushGridBrushLineBrushRiseSmoothingFallSmoothing
WaterfallControl
HistoryLineCountDisplayMinimumPowerDbmDisplayMaximumPowerDbmDitherDbGammaZoomFactorPanX
Included Types
SpectrumWaterfallMonitor.Controls.Spectrum.SpectrumControlSpectrumWaterfallMonitor.Controls.Waterfall.WaterfallControlSpectrumWaterfallMonitor.Core.Models.SpectrumFrameSpectrumWaterfallMonitor.Core.Generation.SpectrumGeneratorSpectrumWaterfallMonitor.Core.Generation.SpectrumGeneratorOptionsSpectrumWaterfallMonitor.Core.Generation.SpectrumPeakOptions
Notes
SpectrumWaterfallMonitor.Coreships 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 | Versions 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 |