• Getting Started
  • Components
    • Barcodes
    • Buttons
    • Chartsupdated
    • Conversational UIupdated
    • Data Query
    • Date Inputsupdated
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Filter
    • Gantt
    • Gauges
    • Gridupdated
    • Icons
    • Indicators
    • Inputsupdated
    • Labels
    • Layout
    • ListBox
    • ListView
    • Map
    • Menus
    • Navigation
    • Notification
    • Pager
    • PDF Export
    • PDFViewer
    • PivotGridupdated
    • Popup
    • ProgressBars
    • Ripple
    • Schedulerupdated
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • ToolBar
    • Tooltips
    • TreeList
    • TreeView
    • Typography
    • Uploads
    • Utilities
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Sample Applications
  • FAQ
  • Troubleshooting
  • Updates
  • Changelogs
New to Kendo UI for Angular? Start a free 30-day trial

LabelTemplateDirective

Represents the template for the labels of the Slider. To define the labels template, nest an <ng-template> tag with the kendoSliderLabelTemplate directive inside the <kendo-slider> tag. The template context is passed to the label value.


@Component({
    selector: 'my-app',
    template: `
        <kendo-slider [largeStep]="2">
          <ng-template kendoSliderLabelTemplate let-value="value">
            <b>{{value}}</b>
          </ng-template>
        </kendo-slider>
    `
})

class AppComponent {
}

Selector

[kendoSliderLabelTemplate]

In this article

Not finding the help you need?