Class KanbanStackedHeader
Defines the stacked header settings for Kanban columns, enabling customization of text and key fields across multiple columns.
Inherited Members
Namespace: Syncfusion.Blazor.Kanban
Assembly: Syncfusion.Blazor.dll
Syntax
public class KanbanStackedHeader : SfDataBoundComponent
Remarks
This component allows you to create complex and organized headers for grouped Kanban columns, providing enhanced visual structure and clarity.
Constructors
KanbanStackedHeader()
Declaration
public KanbanStackedHeader()
Properties
ChildContent
Gets or sets the child content of the stacked header.
Declaration
public RenderFragment ChildContent { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.RenderFragment | A Microsoft.AspNetCore.Components.RenderFragment containing the child content to render inside the stacked header. |
Remarks
Use this property to define custom content for the stacked header, such as additional headers or sections.
KeyFields
Gets or sets the key fields associated with multiple columns in the stacked header.
Declaration
public List<string> KeyFields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | A System.Collections.Generic.List<> of System.String values representing the key fields of the columns. |
Remarks
This property allows you to define which columns are associated with the specific stacked header, identified by their key fields.
Text
Gets or sets the text to display in the column header.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String | A System.String representing the text displayed in the stacked column header. |
Remarks
Use this property to specify descriptive text for the segmented column headers in the Kanban board for better user understanding.
Methods
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing any asynchronous operation. |