Northwoods.GoDiagram.WinForms 10.0.0-beta5

This is a prerelease version of Northwoods.GoDiagram.WinForms.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Northwoods.GoDiagram.WinForms --version 10.0.0-beta5
NuGet\Install-Package Northwoods.GoDiagram.WinForms -Version 10.0.0-beta5
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="Northwoods.GoDiagram.WinForms" Version="10.0.0-beta5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Northwoods.GoDiagram.WinForms --version 10.0.0-beta5
#r "nuget: Northwoods.GoDiagram.WinForms, 10.0.0-beta5"
#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.
// Install Northwoods.GoDiagram.WinForms as a Cake Addin
#addin nuget:?package=Northwoods.GoDiagram.WinForms&version=10.0.0-beta5&prerelease

// Install Northwoods.GoDiagram.WinForms as a Cake Tool
#tool nuget:?package=Northwoods.GoDiagram.WinForms&version=10.0.0-beta5&prerelease

GoDiagram — .NET Library for Interactive Diagrams

GoDiagram is currently in beta

GoDiagram is a .NET library for creating interactive diagrams, charts, and graphs. It is based on the GoJS JavaScript diagramming library, also from Northwoods Software.

open issues Twitter Follow

Get Started with GoDiagram

GoDiagram is a flexible library that can be used to create a number of different kinds of interactive diagrams, including data visualizations, drawing tools, and graph editors. GoDiagram includes a number of built in layouts including tree layout, force directed, radial, and layered digraph layout, and a number of custom layout examples.

Read more about GoDiagram at godiagram.com.

This repository contains the sources for all samples and extensions. You can use the GitHub repository to quickly search through the sample sources.

In your project, we recommend referencing the library via NuGet as it will more reliably add toolbox items and necessary references.

Minimal Sample

Graphs are constructed by creating one or more templates, with desired properties data-bound, and adding model data.

  ...

  private void Setup() {
    _Diagram = diagramControl1.Diagram;

    _Diagram.UndoManager.IsEnabled = true;  // enable undo & redo

    // define a simple Node template
    _Diagram.NodeTemplate =
      new Node("Auto")  // the Shape will go around the TextBlock
        .Add(
          new Shape("RoundedRectangle") {
              StrokeWidth = 0,  // no border
              Fill = "white"  // default fill is white
            }
            // Shape.Fill is bound to Node.Data.Color
            .Bind("Fill", "Color"),
          new TextBlock {
              Margin = 8, // some room around the text
              Font = new Font("Segoe UI", 14, FontWeight.Bold),
              Stroke = "#333"
            }
            // TextBlock.Text is bound to Node.Data.Key
            .Bind("Text", "Key")
        );

    // but use the default Link template, by not setting Diagram.LinkTemplate

    // create the model data that will be represented by Nodes and Links
    _Diagram.Model = new Model {
      NodeDataSource = new List<NodeData> {
        new NodeData { Key = "Alpha", Color = "lightblue" },
        new NodeData { Key = "Beta", Color = "orange" },
        new NodeData { Key = "Gamma", Color = "lightgreen" },
        new NodeData { Key = "Delta", Color = "pink" }
      },
      LinkDataSource = new List<LinkData> {
        new LinkData { From = "Alpha", To = "Beta" },
        new LinkData { From = "Alpha", To = "Gamma" },
        new LinkData { From = "Beta", To = "Beta" },
        new LinkData { From = "Gamma", To = "Delta" },
        new LinkData { From = "Delta", To = "Alpha" }
      }
    };
  }

  // define the model data
  public class Model : GraphLinksModel<NodeData, string, object, LinkData, string, string> { }
  public class NodeData : Model.NodeData {
    public string Color { get; set; }
  }
  public class LinkData : Model.LinkData { }

  ...

The above diagram and model code creates the following graph.

diagram

License

The GoDiagram software license.

Copyright (c) 2022 Northwoods Software Corporation

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
10.0.8 75 3/21/2024
10.0.7 183 2/22/2024
10.0.6 604 9/14/2023
10.0.5 749 7/27/2023
10.0.4 740 5/25/2023
10.0.3 665 4/5/2023
10.0.2 1,004 1/5/2023
10.0.1 1,036 10/27/2022
10.0.0 1,019 9/19/2022
10.0.0-rc1 583 9/14/2022
10.0.0-beta6 518 8/31/2022
10.0.0-beta5 531 8/18/2022