Hello,
I'm trying to put title on 2 lines but the layout is not so good. See attachment. This is the code used here :
steps[6] = 'Might well be expected at some time';steps[5] = 'Quite possi. could happen';steps[4] = 'Unusual but possible';steps[3] = 'Remotely possible';steps[2] = 'Conceivable but<br/>very unlik.';steps[1] = 'Pratically impossible';steps[0] = 'Choose value';AdapterLegendes("#NoProbabilite", steps);function AdapterLegendes(nomSlider, steps) { var slider = $(nomSlider).data("kendoSlider"); var largeTickItems = slider.wrapper.find(".k-tick-large"); $.each(largeTickItems, function (index) { var step = steps[index]; var children; $(this).attr("title", step).children().html(step); });}