New to Kendo UI for Angular? Start a free 30-day trial
PanelBarItemTemplateDirective
Defines the template directive of the PanelBar which helps to customize the item content.
To define the template, nest an <ng-template>
tag
with the kendoPanelBarItemTemplate
directive inside the <kendo-panelbar>
tag.
html
<kendo-panelbar>
<ng-template kendoPanelBarItemTemplate let-dataItem>
<span>{{ dataItem.title }}</span>
</ng-template>
</kendo-panelbar>
Selector
[kendoPanelBarItemTemplate]