Good day,
I am having issues with adding custom content inside each panel> Review code below
<ejs-dashboardlayout id='defaultLayout' #defaultLayout [columns]='columns' [mediaQuery]='mediaQuery' [cellSpacing]='cellSpacing'
[allowResizing]='allowResizing' [resizableHandles]='resizableHandles'
(resizeStart)="onResizeStart($this)" (resize)="onResize($this)" (resizeStop)="onResizeStop($this)">
<e-panels>
<e-panel *ngFor="let panel of panels" [sizeX]="panel.sizeX" [sizeY]="panel.sizeY" [row]="panel.row" [col]="panel.col">
<ng-template #content>
<div> My content</div>
</ng-template>
</e-panel>
</e-panels>
</ejs-dashboardlayout>
the code above results in the error below
Same goes when i use #header as well.
Below is my package version
"@syncfusion/ej2-angular-layouts": "30.1.37",