Setting Calendar TextColor

What is the proper syntax for setting the calendar text color? Doing it this way, I get The type 'CalendarMonthView' does not support direct content.


    <Style x:Key="SfCalendarFilter" TargetType="calendar:SfCalendar">
        <Setter Property="StartRangeSelectionBackground" Value="{StaticResource SecondaryColor}" />
        <Setter Property="EndRangeSelectionBackground" Value="{StaticResource SecondaryColor}" />
        <Setter Property="SelectionBackground" Value="{StaticResource Accent}" />
        <Setter Property="MonthView">
            <calendar:CalendarMonthView>
                <Setter Property="TextStyle">
                    <calendar:CalendarTextStyle>
                        <Setter Property="TextColor" Value="Red"/>
                    </calendar:CalendarTextStyle>
                </Setter>
            </calendar:CalendarMonthView>
        </Setter>
    </Style>

1 Reply

IR Indumathi Ravichandran Syncfusion Team July 28, 2023 01:33 PM UTC

Hi Ben,


Can you please use the below code snippet for applying the TextColor for month.


Code snippet:


<ContentPage.Resources>

    <ResourceDictionary>

        <Color x:Key="RedColor">Red</Color>

        <Color x:Key="GreenColor">Green</Color>

        <Color x:Key="BlueColor">Blue</Color>

        <Style TargetType="calendar:SfCalendar">

            <Setter Property="EndRangeSelectionBackground" Value="{StaticResource RedColor}" />

            <Setter Property="SelectionBackground" Value="{StaticResource GreenColor}" />

            <Setter Property="MonthView">

                <calendar:CalendarMonthView>

                    <calendar:CalendarMonthView.TextStyle>

                        <calendar:CalendarTextStyle TextColor="{StaticResource BlueColor}" />

                    </calendar:CalendarMonthView.TextStyle>

                </calendar:CalendarMonthView>

            </Setter>

        </Style>

    </ResourceDictionary>

</ContentPage.Resources>


Output:




We hope that this helps you. Please let us know if you need further assistance.


Regards,

Indumathi R


Loader.
Up arrow icon