Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hi,
I would like to have Items display one on top, one on bottom, and so forth... for better readability, is possible?
Boris
Hello Elizabeth,
There is no built-in option for that. But you can easily achieve such look with plain CSS. For example:
<
style
>
.rslItemsWrapper .rslItem {
position: relative;
}
.rslItemsWrapper .rslItem:nth-child(even) span {
position: absolute;
top: 43px;
left: 3px;
</
telerik:RadSlider
RenderMode
=
"Lightweight"
ID
"RadSlider_Items"
runat
"server"
ItemType
"Item"
Width
"400px"
Height
"70px"
Items
telerik:RadSliderItem
Text
"Jan"
Value
"1"
></
"Feb"
"2"
"Mar"
"3"
"Apr"
"4"
"May"
"5"
"Jun"
"6"
"Jul"
"7"
"Aug"
"8"
"Sep"
"9"
"Oct"
"10"
"Nov"
"11"
"Dec"
"12"
Of course you will need to adjust the CSS to fit the slider's design on your end.