Skip to content

Forcing Tables in Section to use full width #202

Discussion options

You must be logged in to vote

There are multiple ways to work and manage placement. You can use New-HTMLPanel, New-HTMLSection or New-HTMLContainer or mix of them. It's sometimes useful to use -Hidden parameter as well.

Last 2-3 are mostly what you want I guess.

$DataTable = @(
    [PSCustomObject] @{ Name = 'Service Desk 1'; Incidents = 1; Resolved = 0; Year = 2001 }
    [PSCustomObject] @{ Name = 'Service Desk 2'; Incidents = 20; Resolved = 15; Year = 2002 }
    [PSCustomObject] @{ Name = 'Service Desk 3'; Incidents = 40; Resolved = 19; Year = 2003 }
    [PSCustomObject] @{ Name = 'Service Desk 4'; Incidents = 15; Resolved = 25; Year = 2004 }
    [PSCustomObject] @{ Name = 'Service Desk 5'; Incidents = 10; Resolved = 

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by PrzemyslawKlys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants