How to increase height of appointment cell in Telerik RADSchedular
I am using telerik RadSchedular control to show appointments from database. RADSchedular was not showing full subject line in monthview and weekview. I have to find a way to increase height of appointment subject via HTML.
Solution
Use following CSS to increase height of appointment cell. I found out this solution by checking the source of radschedular on borwser.
<style type="text/css"> .rsMonthView .rsWrap, .rsWeekView .rsWrap { height: 70px !important; } .rsMonthView .rsDateWrap, .rsWeekView .rsDateWrap { height: 24px !important; } .rsMonthView .rsLastWrap, .rsWeekView .rsLastWrap { height: 24px !important; } .rsMonthView .rsApt, .rsWeekView .rsApt { height: 68px !important; } </style>