PanelBarItemTemplateDirective
Directive
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.
Definition
Package:@progress/kendo-angular-layout
Selector:[kendoPanelBarItemTemplate]
Syntax:
html
<kendo-panelbar>
<ng-template kendoPanelBarItemTemplate let-dataItem>
<span>{{ dataItem.title }}</span>
</ng-template>
</kendo-panelbar>