Northwoods.GoDiagram.Avalonia
10.0.11
dotnet add package Northwoods.GoDiagram.Avalonia --version 10.0.11
NuGet\Install-Package Northwoods.GoDiagram.Avalonia -Version 10.0.11
<PackageReference Include="Northwoods.GoDiagram.Avalonia" Version="10.0.11" />
paket add Northwoods.GoDiagram.Avalonia --version 10.0.11
#r "nuget: Northwoods.GoDiagram.Avalonia, 10.0.11"
// Install Northwoods.GoDiagram.Avalonia as a Cake Addin #addin nuget:?package=Northwoods.GoDiagram.Avalonia&version=10.0.11 // Install Northwoods.GoDiagram.Avalonia as a Cake Tool #tool nuget:?package=Northwoods.GoDiagram.Avalonia&version=10.0.11
GoDiagram — .NET Library for Interactive Diagrams
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.
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.
License
See nwoods.com for our licenses.
Copyright (c) 2024 Northwoods Software Corporation
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Avalonia (>= 11.0.0 && < 12.0.0)
- Avalonia.Skia (>= 11.0.0 && < 12.0.0)
- SkiaSharp.Svg (>= 1.60.0)
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.11 | 47 | 11/6/2024 |
10.0.10 | 259 | 6/27/2024 |
10.0.9 | 132 | 6/18/2024 |
10.0.8 | 226 | 3/21/2024 |
10.0.7 | 263 | 2/22/2024 |
10.0.6 | 346 | 9/14/2023 |
10.0.5 | 222 | 7/27/2023 |
10.0.0-preview5 | 169 | 5/25/2023 |
10.0.0-preview4 | 200 | 4/5/2023 |
10.0.0-preview3 | 265 | 1/5/2023 |
10.0.0-preview2 | 192 | 12/13/2022 |
10.0.0-preview1 | 238 | 10/27/2022 |