Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hello.

I use SfScheduler.
When I set MonthView.CellStyle and CellSelectionView, MonthView.CellStyle takes precedence and CellSelectionView does not work.
For example, if you set the following, the background is Aqua no matter where in the this month you tap.
On the other hand, if you tap the date of last month or next month, it will be Gray.

<Grid>       

    <scheduler:SfScheduler x:Name="Scheduler" View="Month">

        <scheduler:SfScheduler.CellSelectionView>

            <scheduler:SchedulerCellSelectionView Background="Gray"/>

        </scheduler:SfScheduler.CellSelectionView>
        <scheduler:SfScheduler.MonthView>

            <scheduler:SchedulerMonthView>

                <scheduler:SchedulerMonthView.CellStyle>

                    <scheduler:SchedulerMonthCellStyle Background="Aqua"/>

                </scheduler:SchedulerMonthView.CellStyle>

            </scheduler:SchedulerMonthView>

        </scheduler:SfScheduler.MonthView>

    </scheduler:SfScheduler>

</Grid>


Please Check.
Thanks.
K.Okamura