import { Component } from '@angular/core'; import { Options } from '@local/ng5-slider'; @Component({ selector: 'app-custom-legend-function-slider', templateUrl: './custom-legend-function-slider.component.html' }) export class CustomLegendFunctionSliderComponent { value: number = 5; options: Options = { floor: 0, ceil: 10, showTicks: true, getLegend: (value: number): string => { return 'T' + value; } }; }