Anyway to resize panels in Dashboard Layout component ? I tried the following :
<EjsDashboardLayout @ref="DashboardObj" CellSpacing="@(new double[]{10 ,10 })" CellAspectRatio="1" Columns="3">
<DashboardLayoutEvents Created="@onCreate"></DashboardLayoutEvents>
<DashboardLayoutPanels>
<DashboardLayoutPanel SizeX="1" SizeY="1">
<ContentTemplate><div>3</div></ContentTemplate>
</DashboardLayoutPanel>
</DashboardLayoutPanels>
</EjsDashboardLayout>
y = new PanelModel()
{
Content = "<img src=\"data:image/png;base64,"+ stringo+"\">" ,
SizeX = .1,
SizeY = .1
};
but didn't work , it always shows the default panel size even if i try a small size < 1 , is there anything like defining 100px for the height and width ?