Contents
- Vertical
- Horizontal
Having trouble getting help?
Contact Support
Contact Support
Orientations in ASP.NET CORE Timeline control
30 Jan 20252 minutes to read
The Timeline control supports the display of items in both horizontal and vertical direction by using the orientation property.
Vertical
You can display the items one below the other vertically by setting the orientation property to Vertical
. By default, the items are displayed in vertical orientation.
@using Syncfusion.EJ2.Layouts;
<div class="container">
<ejs-timeline id="timeline" orientation="Vertical">
<e-timeline-items>
<e-timeline-item content="Day 1, 4:00 PM" oppositeContent="Check-in and campsite visit"></e-timeline-item>
<e-timeline-item content="Day 1, 7:00 PM" oppositeContent="Dinner with music"></e-timeline-item>
<e-timeline-item content="Day 2, 5:30 AM" oppositeContent="Sunrise between mountains"></e-timeline-item>
<e-timeline-item content="Day 2, 8:00 AM" oppositeContent="Breakfast and check-out"></e-timeline-item>
</e-timeline-items>
</ejs-timeline>
</div>
<style>
#container {
width: 60%;
margin: 30px auto;
padding: 30px;
}
.container:has(.e-vertical) {
height: 350px;
}
</style>
Horizontal
In horizontal orientation, the items are displayed in a side-by-side manner by setting the orientation property to Horizontal
.
@using Syncfusion.EJ2.Layouts;
<div class="container">
<ejs-timeline id="timeline" orientation="Horizontal">
<e-timeline-items>
<e-timeline-item content="Day 1, 4:00 PM" oppositeContent="Check-in and campsite visit"></e-timeline-item>
<e-timeline-item content="Day 1, 7:00 PM" oppositeContent="Dinner with music"></e-timeline-item>
<e-timeline-item content="Day 2, 5:30 AM" oppositeContent="Sunrise between mountains"></e-timeline-item>
<e-timeline-item content="Day 2, 8:00 AM" oppositeContent="Breakfast and check-out"></e-timeline-item>
</e-timeline-items>
</ejs-timeline>
</div>