Skip to content

Parameters

Christophe Peugnet edited this page Mar 12, 2022 · 6 revisions

TasksList : (List<BlazorCalendar.Models.Tasks>) nullable

public class Tasks
{
    public int ID { get; set; }
    public DateTime DateStart { get; set; }
    public DateTime DateEnd { get; set; }
    public string Code { get; set; }
    public string Caption { get; set; }
    public string Color { get; set; }
    public string ForeColor { get; set; }
    public string Comment { get; set; }
}
Property Description
ID unique ID
Code user coding
Caption longer text
Color backgroundcolor in Hexa format
ForeColor font color in Hexa format
Comment comment that will appear in the tooltip

FirstDate : (DateTime) First column

Months : (int) Number of column

Style : (string) User styles, applied on top of the component's own classes and styles.

Class : (string) User class names, separated by space.

WeekDaysColor : (string) default :"#FFF" background color of empty days

SaturdayColor : (string) default :"#DBE4F2" Saturday background color

SundayColor : (string) default :"#DBE4F2" Sundybackground color

Clone this wiki locally