
UniversalDashboard.Diagrams
Diagrams for Universal Dashboard.
Adam Driscoll
save_alt 2414 downloads
Universal Dashboard Diagrams
Diagrams for Universal Dashboard allow you create network and flow diagrams. You can define nodes, their colors and links to other nodes. Nodes support multiple input and output ports that can be linked using links. You can define the OnSelected
event handler to receive a notification when a node is selected.
Installation
Install-Module UniversalDashboard.Diagrams
Usage
$Nodes = 1..5 | % { New-UDDiagramNode -Id "node$_" -Name "node$_" -OutPort 'out' -InPort 'in' -Color blue -xOffset (100 * $_) }
$Links = 1..4 | % { New-UDDiagramLink -OutNode "node$_" -OutPort 'out' -InNode "node$($_ + 1)" -InPort 'in' }
New-UDDiagram -Node $Nodes -Link $Links -Locked -OnSelected {
Show-UDToast -Message $EventData
}
Icon
http://www.iconarchive.com/show/ios7-icons-by-icons8/Data-Flow-Chart-icon.html
Install
Install-Module UniversalDashboard.Diagrams
Version
1.0.2
Last Updated
Thursday, September 17, 2020
Tags
universaldashboard diagrams ud-control ud-licensed
Author
Adam Driscoll
Type
dashboard Component