This question is locked. New answers and comments are not allowed.
I am setting different height of Appointment based on Some conditions using OrientedAppointmentItemStyleSelector class. It is working fine but the issue I am facing is with Group Header. The Group Header Height is not getting increased when the appointment height is more than the group header. So to resolved this I placed below tags in OrientedGroupHeaderStyleSelector, but still I am the group header is not getting expanded. I have attached a screen shot for your reference. It is very very urgent and looking for quick response
<telerik:OrientedGroupHeaderStyleSelector x:Key="GroupHeaderStyle"> <telerik:OrientedGroupHeaderStyleSelector.VerticalStyle> <Style TargetType="telerik:GroupHeader"> <Setter Property="Padding" Value="0 0 0 25"></Setter> <Setter Property="MinHeight" Value="200"></Setter> <Setter Property="MaxHeight" Value="Auto"></Setter> <Setter Property="Height" Value="Auto"></Setter> </Style> </telerik:OrientedGroupHeaderStyleSelector.VerticalStyle> </telerik:OrientedGroupHeaderStyleSelector>