I used the example of documentation to change the color of my calendar, but I need it to be with transparent background and I'm not having success.
currently I put the code:
calendar.OnMonthCellLoaded += (object sender, MonthCell args) =>
{
mode 01: args.BackgroundColor = new Color(255, 255, 255, 0.2);
//OR i try this:
mode 02: args.BackgroundColor = Color.Transparent;
};
and
I did not succeed, the maximum that appears is gray, and the background of the page is a PNG image with blue gradient
how can I do it??