[]
C1 FlexGrid for Blazor provides two approaches for customizing cell content: CellTemplate and CellFactory. Both allow overriding the default rendering of cells, but they differ in scope, flexibility, and performance.
Cell Template | Cell Factory |
|---|---|
Defined per column via GridColumn.CellTemplate | |
Overrides the default rendering for non-header cells in a specific column. | |
Best for column-specific customizations where default grid behavior should remain intact. | |