Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
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.