# Interface CalendarHeatmapStyleOptions
Configuration options that define functional style of the various elements of calendar-heatmap chart
# Properties
# cellLabels
cellLabels?:
CalendarHeatmapCellLabels
Configuration for day numbers (1-31) in calendar cells
# dayLabels
dayLabels?:
object
Configuration for weekday names in the header
# Type declaration
#
dayLabels.enabled
enabled?:
boolean
Boolean flag that defines if calendar weekday names should be shown
# Default
true
#
dayLabels.style
style?:
TextStyle
Style configuration for calendar weekday names
# height
height?:
number
Total height of the component, which is considered in the following order of priority:
- Value passed to this property (in pixels).
- Height of the container wrapping this component
- Default value of 400px (for component without header) or 425px (for component with header).
# monthLabels
monthLabels?:
object
Configuration for month names in multi-month view types
# Type declaration
#
monthLabels.enabled
enabled?:
boolean
Boolean flag that defines if month names should be shown
# Default
true
#
monthLabels.style
style?:
TextStyle
Style configuration for month names
# startOfWeek
startOfWeek?:
CalendarDayOfWeek
Determines which day of the week to start the calendar with
# Default
'sunday'
# viewType
viewType?:
CalendarHeatmapViewType
View type determines how many months to display: 'month' (1), 'quarter' (3), 'half-year' (6), 'year' (12)
# weekends
weekends?:
object
Configuration for weekend days
# Type declaration
#
weekends.cellColor
cellColor?:
string
Calendar cell color for weekend days
# Default
'#e6e6e6'
#
weekends.days
days?:
CalendarDayOfWeek
[]Weekend days - defaults to ['saturday', 'sunday']
#
weekends.enabled
enabled?:
boolean
Boolean flag that enables/disables weekend highlighting
# Default
false
#
weekends.hideValues
hideValues?:
boolean
Whether to hide values in tooltip for weekend days
# Default
false
# width
width?:
number
Total width of the component, which is considered in the following order of priority:
- Value passed to this property (in pixels)
- Width of the container wrapping this component
- Default value of 400px