You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To display Event Calendar correctly, you need to provide the corresponding styles. For this purpose, you can create the **event-calendar.component.css** file in the **src/app/event-calendar/** directory and specify important styles for Event Calendar and its container:
/* specify styles for the Event Calendar container */
129
+
.widget {
130
+
position: relative;
131
+
width: 100%;
132
+
height: 100%;
133
+
}
134
+
~~~
135
+
108
136
#### Loading data
109
137
110
138
To add data into Event Calendar, you need to provide a data set. You can create the **data.ts** file in the **src/app/event-calendar/** directory and add some data into it:
0 commit comments