ICalendarCell.Visible
ICalendarCell
property Visible: WordBool;
Type Library
TeeChartx
Description
Enables/Disables the visibility of a specified calender cell.
Example [Visual Basic]:
This example will display a completely empty calender:
With TChart1.Series(0).asCalendar
.Today.Visible = False
.Weekdays.Visible = False
.Days.Visible = False
.Months.Visible = False
.Sunday.Visible = False
.Trailing.Visible = False
.Weekdays.Visible = False
End With