Hi Coda,
Greetings from Syncfusion support.
From your shared details, we understand that you are requesting
information about the height of the Dashboard panels and the cellAspectRatio
property. The Dashboard Layout is a grid structured component, that can be
split into subsections of equal size known as "cells." The size of
grid cells can be modified to the required size using the Columns and CellAspectRatio properties.
So, you can set the sizeX and sizeY values to
render the panel as per your requirements and adjust the height of the panel by
using the cellAspectRatio property based on the screen
resolutions.
For more information, check out the below-mentioned links.
Documentation : https://blazor.syncfusion.com/documentation/dashboard-layout/setting-size-of-cells
API reference : https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Layouts.SfDashboardLayout.html#properties
Also, check the below mentioned code snippets for further assistance.
<SfDashboardLayout CellSpacing="@Spacing" Columns="5" CellAspectRatio="@Ratio" > …
</SfDashboardLayout>
@code{
private double Ratio
= 2;
}
|
If you are still having difficulty defining the dashboard layout
structure, please share some additional information about your specific
requirement with a pictorial representation or video footage. It will
help us provide a prompt solution.
Regards,
Leo Lavanya Dhanaraj