Is it possible to manipulate the height of dashboard rows?

Dear Widget Team
(I hope you’re the right people to contact)

I have a dashboard layout in my BAP with the following settings:

{
  "rows": [
    {
      "columns": [
        {
          "width": {
            "lg": 12
          }
        }
      ]
    },
    {
      "columns": [
        {
          "width": {
            "lg": 12
          }
        }
      ]
    }
  ]
}

This leads to two dasboard tiles underneath each other and each tile/row taking 50% of the available height. I desperately need a 70% : 30% distribution.

Is there a chance to somehow manipulate/configure the height of a dashboard’s row?

Thank you!
Bianca

Hi Bott, we already provided the property height to specify the row height. You can use it to override the height.

<Row height="200px" />

Hi @trang-wintry-gorge,

I was so happy to read this, but now I’m a little confused:
I don’t have a Row attribute in the JSON that needs to be provided as `Settings" for the dashboard layout. The JSON looks like in my post above and it is configured here:

And also if I look in the documentation → GetA12 Login no Row attribute is specified, only a list of rows and columns

And also your code seems to be XML or HTML…

Could you please give me an example on how I can use the height property inside an appmodel in JSON?

Thank you very much!
Bianca

@trang-wintry-gorge or anyone else?
Please :pray:

Hi, the default DashboardLayout of A12 Client only uses the settings information from the appmodel to render the rows and columns of the LayoutGrid widget.

Therefore, changing properties on these widgets has to be done with code (specifically, by writing a custom Layout, which allows you to render the Row widget (or others) however you like).

@bianca-firm-knoll , has the reply above answered your question?