API Reference
New-DiagramEvent
Allows to connect Diagrams with Tables using Events.
Remarks
Allows to connect Diagrams with Tables using Events.
Examples
EXAMPLE 1
$Processes = Get-Process | Select-Object -First 3 -Property Name, ProcessName, Id, FileVersion, WorkingSet
$TableID = 'RandomID'
New-HTML -TitleText 'My Title' -Online -FilePath $PSScriptRoot\Example30-LinkedProcesses.html -ShowHTML { New-HTMLSection -Invisible { New-HTMLPanel { New-HTMLTable -DataTable $Processes -DataTableID $TableID } New-HTMLPanel { New-HTMLDiagram { New-DiagramEvent -ID $TableID -ColumnID 2 New-DiagramNode -Label 'Processes' -IconBrands delicious foreach ($_ in $Processes) { New-DiagramNode -Label $_.ProcessName -Id $_.Id -To 'Processes' } } } } }
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
New-DiagramEvent [-ColumnID <Nullable`1>] [-ID <String>] [<CommonParameters>]
#
All Parameter SetsParameters
- ColumnID Nullable`1
- Column Number of the table to connect with the diagram.
- ID String
- ID of the table to connect with the diagram.