FR displaying long labels
If the labels are long, having all displayed below or on top of the slider would result in a messy layout.
Instead an option to place every odd item to the top and every even item (label) on the bottom would allow for longer texts
https://stackblitz.com/edit/kendo-angular-slider-steplabelsfn-this-obhuar?file=app/app.component.ts
Furthermore missing in documentation:
The [title] input won't work without setting [largeStep] as well.
Furthermore missing in documentation:
The callback to the [title] input has to be a fat-arrow function,
or an extra patch is needed (as the UI component currently 2019/10/30) this.getStepLabelNotWorking = this.getStepLabelNotWorking.bind(this); as inside a classic function the this refers not to the class itself, but to the component. IMO this is a BUG! See: https://stackblitz.com/edit/kendo-angular-slider-steplabelsfn-this?file=app/app.component.ts