New to Kendo UI for Angular? Start a free 30-day trial
PanelBarItemTitleDirective
Represents the template directive of the PanelBar which helps to customize the item title (more information and example).
The
kendoPanelBarItemTitle
directive overrides the PanelBarItem title option.
ts
@Component({
selector: 'my-app',
template: `
<kendo-panelbar>
<kendo-panelbar-item [expanded]="true">
<ng-template kendoPanelBarItemTitle>
Item Title
</ng-template>
</kendo-panelbar-item>
</kendo-panelbar>
`
})
class AppComponent {}
Selector
[kendoPanelBarItemTitle]