PanelBarItemTitleDirective
Represents the template directive of the PanelBar which helps to customize the item title (more information and example).
@Component({
selector: 'my-app',
template: `
<kendo-panelbar>
<kendo-panelbar-item [title]="'Paris'" [expanded]="true">
<ng-template kendoPanelBarItemTitle>
Additional Content
</ng-template>
</kendo-panelbar-item>
</kendo-panelbar>
`
})
class AppComponent {}
Selector
[kendoPanelBarItemTitle]