WPF RadScheduleView GroupHeader

1 Answer 122 Views
ScheduleView
Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
Ohad asked on 06 Apr 2022, 08:24 AM

How do I change the color under the dates?

I tried to change colors in all sorts of styles but could not find which style was responsible for it

Would appreciate help

1 Answer, 1 is accepted

Sort by
0
Accepted
Stenly
Telerik team
answered on 11 Apr 2022, 07:38 AM

Hello Ohad,

To achieve the desired result, you could create a new Style with TargetType="GroupHeaderButton" and utilizing the Theme Helper, add a new Setter for the CheckedBrush property. This property will change the background color of the GroupHeaderButton element (which is orange) in the provided image.

The following code snippet shows this Style's implementation:

<Style TargetType="telerik:GroupHeaderButton">
    <Setter Property="helpers:ThemeHelper.CheckedBrush" Value="Red"/>
</Style>

The result is as follows:

With that said, could you give this suggestion a try and let me know how it goes?

Regards,
Stenly
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
commented on 11 Apr 2022, 08:08 AM

It works, thank you very much!
Tags
ScheduleView
Asked by
Ohad
Top achievements
Rank 3
Bronze
Iron
Iron
Answers by
Stenly
Telerik team
Share this question
or