New to Kendo UI for Angular? Start a free 30-day trial
StepperLabelTemplateDirective
Use this template to define custom content for the step label.
To define the template, nest an <ng-template> tag
with the kendoStepperLabelTemplate directive inside the <kendo-stepper> tag.
html
<kendo-stepper>
  <ng-template kendoStepperLabelTemplate let-step="step" let-index="index">
    <span class="custom-label">{{ step.label }}</span>
  </ng-template>
</kendo-stepper>Selector
[kendoStepperLabelTemplate]