Class GanttColumnChooserSettings
Configures gantt Column chooser settings
Inheritance
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class GanttColumnChooserSettings : OwningComponentBase
Constructors
GanttColumnChooserSettings()
Declaration
public GanttColumnChooserSettings()
Properties
FooterTemplate
Gets or sets the custom footer content for the ColumnChooser.
Declaration
public RenderFragment<object> FooterTemplate { get; set; }
Property Value
| Type | Description |
|---|---|
| Microsoft.AspNetCore.Components.RenderFragment<System.Object> | The custom footer content is specified as a Microsoft.AspNetCore.Components.RenderFragment<> that takes a single parameter named |
Remarks
The parameters passed to the templates can be accessed using implicit parameter named context.
The context is of type TValue of the gantt chart.
Template
Gets or sets the custom content template for the ColumnChooser.
Declaration
public RenderFragment<object> Template { get; set; }
Property Value
| Type | Description |
|---|---|
| Microsoft.AspNetCore.Components.RenderFragment<System.Object> | A Microsoft.AspNetCore.Components.RenderFragment<> that represents the custom content template for the ColumnChooser. |
Remarks
The parameters passed to the templates can be accessed using implicit parameter named context.
The context is of type TValue of the grid.
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
| Type | Name | Description |
|---|---|---|
| Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
Dispose(Boolean)
Disposes the resources used by the Blazor component. Called by the framework when the component is removed from the render tree.
Declaration
protected override void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Boolean | disposing | true if managed resources should be disposed; otherwise, false. |
OnInitializedAsync()
Triggers during the initial rendering of the component.
Declaration
protected override Task OnInitializedAsync()
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing the asynchronous operation. |
OnParametersSetAsync()
Called by the framework when component parameters have been set. Executes logic that depends on the updated parameter values.
Declaration
protected override Task OnParametersSetAsync()
Returns
| Type |
|---|
| System.Threading.Tasks.Task |