FastGraphWPF 1.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package FastGraphWPF --version 1.0.8
                    
NuGet\Install-Package FastGraphWPF -Version 1.0.8
                    
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="FastGraphWPF" Version="1.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FastGraphWPF" Version="1.0.8" />
                    
Directory.Packages.props
<PackageReference Include="FastGraphWPF" />
                    
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 FastGraphWPF --version 1.0.8
                    
#r "nuget: FastGraphWPF, 1.0.8"
                    
#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 FastGraphWPF@1.0.8
                    
#: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=FastGraphWPF&version=1.0.8
                    
Install as a Cake Addin
#tool nuget:?package=FastGraphWPF&version=1.0.8
                    
Install as a Cake Tool

using CommunityToolkit.Mvvm.ComponentModel; using FastGraphLibraryWPF; using FastGraphLibraryWPF.Interface; using System.Collections.ObjectModel; using System.Timers;

namespace Example.ViewModels { public partial class FastGraphVM : ObservableObject { private readonly System.Timers.Timer _pollTimer = new System.Timers.Timer(1000); private double _time = 0; private readonly Random _random = new Random();

[ObservableProperty] public ObservableCollection<IDataSeries> series = new ObservableCollection<IDataSeries>();

[ObservableProperty] public string unitTime = "s";

[ObservableProperty] public string unitValue = "";

public FastGraphVM() { Series.Add(new FastGraphLibraryWPF.Models.DataSeries("1", System.Windows.Media.Colors.Red, 1.0)); Series.Add(new FastGraphLibraryWPF.Models.DataSeries("2", System.Windows.Media.Colors.Blue, 1.0)); Series.Add(new FastGraphLibraryWPF.Models.DataSeries("3", System.Windows.Media.Colors.Green, 1.0));

_pollTimer.Elapsed += Timer_Tick;
_pollTimer.Start();

}

private void Timer_Tick(object sender, ElapsedEventArgs e) { System.Windows.Application.Current.Dispatcher.Invoke(() ⇒ { AddNewPoint(); }); }

private void AddNewPoint() { _time += 0.5; double y = Math.Sin(_time) + _random.NextDouble() * 0.1; Series[0].AddPoint(_time, y); Series[1].AddPoint(_time, y + 1); Series[2].AddPoint(_time, y + 0.5); } } }

<Window x:Class="Example.Views.Windows.FastGraph" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:Example.Views.Windows" xmlns:fg="clr-namespace:FastGraphLibraryWPF;assembly=FastGraphLibraryWPF" mc:Ignorable="d" Title="FastGraph" Height="450" Width="800"> <Grid> <fg:FastGraph x:Name="Graph" Series="{Binding Series}"/> </Grid> </Window>

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0-windows7.0

    • No dependencies.
  • net9.0-windows7.0

    • 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
1.0.9 156 3/14/2025
1.0.8 174 3/12/2025
1.0.7 164 3/12/2025
1.0.6 178 3/12/2025
1.0.5 170 3/12/2025
1.0.4 168 3/11/2025
1.0.3 171 3/11/2025
1.0.2 179 3/11/2025
1.0.1 180 3/10/2025
1.0.0 171 3/10/2025