sets the width of the title for a vertical slider or range slider, if it's on the left when used with axisTitles
webix.ui({
view: "rangeslider",
vertical: true,
title: o => `Handle with value ${o.value}`,
moveTitle: true,
axisTitles: v => v,
titleWidth: 140
});
Applies to vertical Slider and RangeSlider controls. Sets the pixel width of the title when it is on the left side of the slider track. Title is moved to the left when both title and axisTitles are enabled, because the axis labels are on the right.