Skip to content

Commit 7bb2807

Browse files
Integrated latest changes at 11-19-2024 10:30:27 PM
1 parent 07f73df commit 7bb2807

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

ej2-angular/code-snippet/schedule/default-cs84/src/app.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ standalone: true,
3030
template: `<ejs-schedule width='100%' height='550px' [selectedDate]="selectedDate" [eventSettings]="eventSettings" >
3131
<e-views>
3232
<e-view option='TimelineYear' displayName='Horizontal Timeline Year' isSelected=true></e-view>
33+
<e-view option='TimelineYear' displayName='Vertical Timeline Year'orientation='Vertical'></e-view>
3334
</e-views>
3435
</ejs-schedule>`
3536
})

ej2-angular/code-snippet/schedule/default-cs85/src/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ standalone: true,
3131
<ejs-schedule width="100%" height="550px" [selectedDate]="selectedDate" [views]="views"
3232
[eventSettings]="eventSettings">
3333
<e-views>
34-
<e-view option='TimelineYear' displayName='Horizontal Timeline Year' isSelected=true></e-view>
34+
<e-view option='TimelineYear' displayName='Horizontal Timeline Year' isSelected=true [group]="groupSettings"></e-view>
3535
<e-view option='TimelineYear' displayName='Vertical Timeline Year' orientation='Vertical' [group]="groupSettings"></e-view>
3636
</e-views>
3737
<e-resources>

ej2-angular/schedule/views.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ The following code example shows how to hide the weekend days on `MonthAgenda` v
245245

246246
Similar to the day view, it shows a single day with all its appointments where the time slots are displayed horizontally. By default, the cell height adjusts as per the height set to Scheduler. When the number of appointments exceeds the visible area of the cells, the `+ more` text indicator will be displayed at the bottom to denote the presence of few more appointments in that time range.
247247

248-
To make use of the timeline views (Timeline Day, Timeline Week and Timeline Work Week) on Scheduler, import and inject the module `TimelineViews` from the `ej2-schedule` package.
248+
To make use of the timeline views (Timeline Day, Timeline Week and Timeline Work Week) on Scheduler, import and inject the module `TimelineViews` from the `ej2-angular-schedule` package.
249249

250250
{% tabs %}
251251
{% highlight ts tabtitle="app.component.ts" %}
@@ -293,7 +293,7 @@ The following code example depicts how to display the timeline work week view on
293293
294294
### Timeline Month view
295295

296-
A Timeline Month view displays the current month days along with its appointments. To make use of the timeline Month view on Scheduler, import and inject `TimelineMonth` module from the `ej2-schedule` package.
296+
A Timeline Month view displays the current month days along with its appointments. To make use of the timeline Month view on Scheduler, import and inject `TimelineMonth` module from the `ej2-angular-schedule` package.
297297

298298
{% tabs %}
299299
{% highlight ts tabtitle="app.component.ts" %}
@@ -315,7 +315,7 @@ A Timeline Month view displays the current month days along with its appointment
315315

316316
In Timeline Year view, each row depicts a single resource. Whereas in the vertical view, each resource is grouped parallelly as columns. Here, the resource grouping follows the tree-view like hierarchical grouping structure and can contain any level of child resources.
317317

318-
To make use of the timeline Year view on Scheduler, import and inject `TimelineYear` module from the `ej2-schedule` package.
318+
To make use of the timeline Year view on Scheduler, import and inject `TimelineYear` module from the `ej2-angular-schedule` package.
319319

320320
{% tabs %}
321321
{% highlight ts tabtitle="app.component.ts" %}

0 commit comments

Comments
 (0)