New to Kendo UI for Angular? Start a free 30-day trial
LabelTemplateDirective
Represents the template for Slider labels.
To define a labels template, nest an <ng-template> tag with the kendoSliderLabelTemplate directive inside
the <kendo-slider> tag. The template context provides the value.
html
<kendo-slider [largeStep]="2">
<ng-template kendoSliderLabelTemplate let-value="value">
<p>{{ value }}</p>
</ng-template>
</kendo-slider>
Selector
[kendoSliderLabelTemplate]