Class GanttFilterSettings
Configures the filter settings for Gantt.
Inheritance
System.Object
GanttFilterSettings
Assembly: Syncfusion.Blazor.dll
Syntax
public class GanttFilterSettings : SfDataBoundComponent
Constructors
GanttFilterSettings()
Declaration
public GanttFilterSettings()
Properties
Columns
Specifies the columns to be filtered at initial rendering of the Gantt.
You can also get the columns that were currently filtered.
Declaration
public object Columns { get; set; }
Property Value
Type |
Description |
System.Object |
|
HierarchyMode
Defines the filter types. The available options are,
Parent
: Shows the filtered record with parent record.
Child
: Shows the filtered record with child record.
Both
: shows the filtered record with both parent and child record.
None
: Shows only filtered record.
Declaration
public FilterHierarchyMode HierarchyMode { get; set; }
Property Value
IgnoreAccent
If ignoreAccent set to true, then filter ignores the diacritic characters or accents while filtering.
Declaration
public bool IgnoreAccent { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Operators
The Operators
is used to override the default operators in filter menu. This should be defined by type wise
(string, number, date and boolean). Based on the column type, this customize operator list will render in filter menu.
Declaration
public object Operators { get; set; }
Property Value
Type |
Description |
System.Object |
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type |
Name |
Description |
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder |
__builder |
|
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
Declaration
protected override Task OnParametersSetAsync()
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides