Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
How to show rad calender month view horizontally.
here is my code:
XML
<telerik:RadCalendar ID="rcJan" runat="server" SingleViewColumns="31"
    SingleViewRows="1" FocusedDate="2012-01-01" ShowOtherMonthsDays="false">
</telerik:RadCalendar>


but its showing only 24 days from January month.
Thanks
Posted

1 solution

SQL
Simply specify the orientation of the calendar by setting the Orientation property to either RenderInColumns or RenderInRows.

EDITED::

get_orientation === Returns 1 if the orientation is "RenderInRows", 2 if it is "RenderInColumns".

OR

radCalendar.Orientation = Orientation.Horizontal;
 
Share this answer
 
Comments

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900