- Before
- After
- Alternate
- Alternate reverse
Contact Support
Alignment in Angular Timeline component
28 Dec 202410 minutes to read
You can display the Timeline content Before
, After
, Alternate
or AlternateReverse
by using the align property. The oppositeContent will be displayed parallel to the content when configured.
Before
In Before alignment, for horizontal
orientation, the item content is placed at the top and oppositeContent at the bottom. For vertical
orientation, the content is placed to the left and oppositeContent to the right.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { TimelineItemModel, TimelineModule, TimelineAllModule } from "@syncfusion/ej2-angular-layouts";
@Component({
imports: [CommonModule, TimelineModule, TimelineAllModule],
standalone: true,
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
public frameworks: TimelineItemModel[] = [
{ content: 'ReactJs', oppositeContent: 'Owned by Facebook' },
{ content: 'Angular', oppositeContent: 'Owned by Google' },
{ content: 'VueJs', oppositeContent: 'Owned by Evan you' },
{ content: 'Svelte', oppositeContent: 'Owned by Rich Harris' }
];
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
<div class="container" style="height: 330px;margin-top: 30px;">
<ejs-timeline align="Before">
<e-items>
<e-item *ngFor="let item of frameworks" [content]="item.content" [oppositeContent]="item.oppositeContent"> </e-item>
</e-items>
</ejs-timeline>
</div>
@import "node_modules/@syncfusion/ej2-base/styles/material.css";
@import 'node_modules/@syncfusion/ej2-angular-layouts/styles/material.css';
After
In After alignment, for horizontal
orientation, the item content is placed at the bottom and oppositeContent at the top. For vertical
orientation, the content is placed to the right and oppositeContent to the left.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { TimelineItemModel, TimelineModule, TimelineAllModule } from "@syncfusion/ej2-angular-layouts";
@Component({
imports: [CommonModule, TimelineModule, TimelineAllModule],
standalone: true,
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
public frameworks: TimelineItemModel[] = [
{ content: 'ReactJs', oppositeContent: 'Owned by Facebook' },
{ content: 'Angular', oppositeContent: 'Owned by Google' },
{ content: 'VueJs', oppositeContent: 'Owned by Evan you' },
{ content: 'Svelte', oppositeContent: 'Owned by Rich Harris' }
];
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
<div class="container" style="height: 330px;margin-top: 30px;">
<ejs-timeline align="After">
<e-items>
<e-item *ngFor="let item of frameworks" [content]="item.content" [oppositeContent]="item.oppositeContent"> </e-item>
</e-items>
</ejs-timeline>
</div>
@import "node_modules/@syncfusion/ej2-base/styles/material.css";
@import 'node_modules/@syncfusion/ej2-angular-layouts/styles/material.css';
Alternate
In Alternate alignment, the item content is arranged alternately regardless of the Timeline orientation.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { TimelineItemModel, TimelineModule, TimelineAllModule } from "@syncfusion/ej2-angular-layouts";
@Component({
imports: [CommonModule, TimelineModule, TimelineAllModule],
standalone: true,
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
public frameworks: TimelineItemModel[] = [
{ content: 'ReactJs', oppositeContent: 'Owned by Facebook' },
{ content: 'Angular', oppositeContent: 'Owned by Google' },
{ content: 'VueJs', oppositeContent: 'Owned by Evan you' },
{ content: 'Svelte', oppositeContent: 'Owned by Rich Harris' }
];
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
<div class="container" style="height: 330px;margin-top: 30px;">
<ejs-timeline align="Alternate">
<e-items>
<e-item *ngFor="let item of frameworks" [content]="item.content" [oppositeContent]="item.oppositeContent"> </e-item>
</e-items>
</ejs-timeline>
</div>
@import "node_modules/@syncfusion/ej2-base/styles/material.css";
@import 'node_modules/@syncfusion/ej2-angular-layouts/styles/material.css';
Alternate reverse
In AlternateReverse alignment, the item content is arranged in reverse alternating order regardless of the Timeline orientation.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
import { TimelineItemModel, TimelineModule, TimelineAllModule } from "@syncfusion/ej2-angular-layouts";
@Component({
imports: [CommonModule, TimelineModule, TimelineAllModule],
standalone: true,
selector: 'app-root',
templateUrl: './app.component.html',
})
export class AppComponent {
public frameworks: TimelineItemModel[] = [
{ content: 'ReactJs', oppositeContent: 'Owned by Facebook' },
{ content: 'Angular', oppositeContent: 'Owned by Google' },
{ content: 'VueJs', oppositeContent: 'Owned by Evan you' },
{ content: 'Svelte', oppositeContent: 'Owned by Rich Harris' }
];
}
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
<div class="container" style="height: 330px;margin-top: 30px;">
<ejs-timeline align="AlternateReverse">
<e-items>
<e-item *ngFor="let item of frameworks" [content]="item.content" [oppositeContent]="item.oppositeContent"> </e-item>
</e-items>
</ejs-timeline>
</div>
@import "node_modules/@syncfusion/ej2-base/styles/material.css";
@import 'node_modules/@syncfusion/ej2-angular-layouts/styles/material.css';