Class ColumnRenderEventArgs
The column render event arguments provide the necessary information about the pivot table column headers before rendering.
Inheritance
System.Object
ColumnRenderEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColumnRenderEventArgs : Object
Constructors
ColumnRenderEventArgs()
Declaration
public ColumnRenderEventArgs()
Properties
Columns
Defines the collection of column headers information that used to render the pivot table column headers.
Declaration
public List<PivotColumn> Columns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PivotColumn> | A list of PivotColumn objects representing the column header information. |
DataSourceSettings
Defines the current report.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type | Description |
---|---|
DataOptions | A DataOptions object representing the data source settings for the report. |
StackedColumns
Defines the grid column information that used to display the column headers (stacked headers) based on its level in the Pivot Table.
Declaration
public List<GridColumn> StackedColumns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<GridColumn> | A list of GridColumn objects representing the grid column information for the stacked headers in the Pivot Table. |