backgroundColor
backgroundColor: string = 'transparent'
showAspect
showAspect: boolean = true
timeBackgroundColor
timeBackgroundColor: string = 'green'
showTimer
showTimer: boolean = false
meetingProgressTime
meetingProgressTime: string = '00:00:00'
Optional
containerStyle
containerStyle?: Partial<CSSStyleDeclaration>
Optional
customTemplate
customTemplate?: TemplateRef<any>
OtherGridComponent represents a customizable grid container with optional meeting progress timer.
Selector
app-other-grid-component
Standalone
true
Imports
CommonModule, MeetingProgressTimer
Template: -
The template consists of:
MeetingProgressTimer
component displayed within the grid ifshowTimer
is true.Styles
Inputs
backgroundColor
(string): Background color of the grid container. Default is'transparent'
.width
(number): Width of the grid in pixels. Default is0
.height
(number): Height of the grid in pixels. Default is0
.showAspect
(boolean): Controls visibility of the grid container. Default istrue
.timeBackgroundColor
(string): Background color of the timer. Default is'green'
.showTimer
(boolean): Determines if the timer should be displayed. Default isfalse
.meetingProgressTime
(string): Time to display in the timer. Default is'00:00:00'
.OtherGridComponent
Example