6 UDCharts on same page but laid out as a 2 x 3 charts page

Hi, I am trying to place multiple charts on a page stagered. What is the best approach to do this. Should I make a table that is 2 x 3 and load the charts in the table? Is there a better approach?

Product: PowerShell Universal
Version: 1.4.6

I’m not sure about version 1.4.6, but in the latest versions of Powershell Universal you can use Columns and Rows to divide a screen.

Have a look at https://docs.powershelluniversal.com/v/master-1/userinterfaces/dashboards/components/layout/grid#row-and-columns

There are 12 Columns. So if you want to divide your screen into 2 columns, like in your example you would create 2 columns of 6 wide.

assuming a full hd screen.

New-UDRow {

   New-UDColumn -LargeSize 6 -Content { 
  #Post your charts here inside new-udcard if you wish.
  }
   New-UDColumn -LargeSize 6 -Content { 
  #Post your charts for the second column here inside new-udcard if you wish.
  }

}

Thanks. I was thinking that but wasnt sure. I appreciate it I was able to get the charts in a 2 x 3 table perfectly.