Class RadzenTimelineItem
RadzenTimeline item.
Implements
IDisposable
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class RadzenTimelineItem : RadzenComponent, IDisposable
Examples
<RadzenTimelineItem PointStyle="PointStyle.Primary">
<LabelContent>
NOV 2022
</LabelContent>
<ChildContent>
Celebrating the official release of Radzen Blazor Studio.
</ChildContent>
</RadzenTimelineItem>
Properties
ChildContent
Gets or sets the child content.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment |
Label
Gets or sets the label.
Declaration
public string Label { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LabelContent
Gets or sets the label content.
Declaration
public RenderFragment LabelContent { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment |
PointContent
Gets or sets the content inside a point on the timeline.
Declaration
public RenderFragment PointContent { get; set; }
Property Value
Type | Description |
---|---|
RenderFragment |
PointShadow
Specifies the Shadow level from 0
(no shadow) to 10
. Set to 1
by default.
Declaration
public int PointShadow { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PointSize
Specifies the Point size from ExtraSmall to Large. Set to PointSize.Medium
by default.
Declaration
public PointSize PointSize { get; set; }
Property Value
Type | Description |
---|---|
PointSize |
PointStyle
Gets or sets the Point style. Set to PointStyle.Base
by default.
Declaration
public PointStyle PointStyle { get; set; }
Property Value
Type | Description |
---|---|
PointStyle |
PointVariant
Specifies if the Point variant is filled, flat, outlined or text only. Set to Variant.Filled
by default.
Declaration
public Variant PointVariant { get; set; }
Property Value
Type | Description |
---|---|
Variant |
Text
Gets or sets the text.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
GetComponentCssClass()
Gets the component CSS class.
Declaration
protected override string GetComponentCssClass()
Returns
Type | Description |
---|---|
System.String |
Overrides
Implements
IDisposable