• Getting Started
  • Components
    • Barcodes
    • Buttons
    • Chartsupdated
    • Conversational UI
    • Data Query
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Filter
    • Ganttupdated
    • Gauges
    • Gridupdated
    • Icons
    • Indicators
    • Inputs
    • Labels
    • Layout
    • ListBox
    • ListView
    • Map
    • Menus
    • Navigation
    • Notification
    • Pager
    • PDF Export
    • PDFViewer
    • PivotGrid
    • Popup
    • ProgressBars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetnew
    • ToolBar
    • Tooltips
    • TreeListupdated
    • TreeViewupdated
    • 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?