Table of Contents

Class RadzenTimeline

Namespace
Radzen.Blazor
Assembly
Radzen.Blazor.dll

RadzenTimeline component is a graphical representation used to display a chronological sequence of events or data points.

public class RadzenTimeline : RadzenComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance
RadzenTimeline
Implements
Inherited Members

Examples

<RadzenTimeline>
<Items>
    <RadzenTimelineItem>
        <ChildContent>
            Checkpoint 1
        </ChildContent>
    </RadzenTimelineItem>
    <RadzenTimelineItem>
        <ChildContent>
            Checkpoint 2
        </ChildContent>
    </RadzenTimelineItem>
</Items>
</RadzenTimeline>

Constructors

RadzenTimeline()

public RadzenTimeline()

Properties

AlignItems

Specifies the alignment of LabelContent, PointContent and ChildContent inside TimelineItems. Set to AlignItems.Center by default.

[Parameter]
public AlignItems AlignItems { get; set; }

Property Value

AlignItems

Items

Gets or sets the items.

[Parameter]
public RenderFragment Items { get; set; }

Property Value

RenderFragment

The items.

LinePosition

Specifies the line position. Set to LinePosition.Center by default.

[Parameter]
public LinePosition LinePosition { get; set; }

Property Value

LinePosition

Orientation

Specifies the orientation - whether items flow in horizontal or vertical direction. Set to Orientation.Vertical by default.

[Parameter]
public Orientation Orientation { get; set; }

Property Value

Orientation

Reverse

Specifies if the LinePosition is reversed.

[Parameter]
public bool Reverse { get; set; }

Property Value

bool

true if reverse; otherwise, false.

Methods

BuildRenderTree(RenderTreeBuilder)

protected override void BuildRenderTree(RenderTreeBuilder __builder)

Parameters

__builder RenderTreeBuilder

GetComponentCssClass()

protected override string GetComponentCssClass()

Returns

string