Documentation

title

text over slider bar

string|function title;

Example

webix.ui({
    view:"slider",
    title:"Select range from 0 to 100",
    ...
});

See also

Details

Can be defined as function

webix.ui({
    view:"slider",
    title:function(obj){
         return "Value: "+ obj.value;
    }
    ...
});
Back to top