I have a simple Scheduler to display scheduled meetings in various rooms. Whether I use the default appointment display or a custom appointment template, if the subject is long enough, it will wrap the text and cut off anything on line 2 or more. Any ideas on how to show the whole subject. This is specific for the month view.
<telerik:RadScheduler ID="rsVTC" runat="server" DataStartField="dtStartDateTime" DataEndField="dtEndDateTime" DataKeyField="intRoomScheduledId" DataSubjectField="Title" OverflowBehavior="Expand" SelectedView="MonthView" DayView-UserSelectable="false" WeekView-UserSelectable="false" MultiDayView-UserSelectable="False" TimelineView-UserSelectable="False" Skin="Office2010Blue" Width="100%" AllowDelete="false" AllowEdit="false" AllowInsert="false"> <AppointmentTemplate> <div> <asp:LinkButton ID="lnkVtcViewRequest" runat="server"><%# Eval("Subject")%></asp:LinkButton> </div> <div> <asp:LinkButton ID="lnkVtcSelectRequest" runat="server" Text="Select" /> </div> </AppointmentTemplate> </telerik:RadScheduler>