diff --git a/blazor/datagrid/images/group-caption-alignment.gif b/blazor/datagrid/images/group-caption-alignment.gif
new file mode 100644
index 0000000000..774c0b28e3
Binary files /dev/null and b/blazor/datagrid/images/group-caption-alignment.gif differ
diff --git a/blazor/datagrid/templates-excel-export.md b/blazor/datagrid/templates-excel-export.md
index ac5eb40d30..1bf00c7d0e 100644
--- a/blazor/datagrid/templates-excel-export.md
+++ b/blazor/datagrid/templates-excel-export.md
@@ -260,6 +260,166 @@ public class OrderData

+## Customizing and Aligning Group Caption Templates in Excel Export
+
+The Syncfusion® Blazor DataGrid supports aligning exported grouped data along with a custom caption template in an Excel document. This capability enables the application of custom formatting and horizontal alignment to group captions, providing enhanced visual presentation and improved readability of exported hierarchical data in Excel spreadsheets.
+
+### Steps to Customize and Align Group Caption Text in Excel Export
+
+1. Trigger the Excel export by handling the [OnToolbarClick](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEvents-1.html#Syncfusion_Blazor_Grids_GridEvents_1_OnToolbarClick) event.
+2. Initiate the export using the [ExportToExcelAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_ExportToExcelAsync_Syncfusion_Blazor_Grids_ExcelExportProperties_) method.
+3. Customize the exported group caption by handling the [ExcelGroupCaptionTemplateInfo](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEvents-1.html#Syncfusion_Blazor_Grids_GridEvents_1_ExcelGroupCaptionTemplateInfo) event.
+4. Apply horizontal alignment to the caption text using `args.Cell.CellStyle.HAlign`.
+5. Specify the alignment value using the `Syncfusion.ExcelExport.HAlignType` enumeration (e.g., Left, Center, Right, General, Justify).
+6. Optionally, enhance the caption style by applying additional formatting via
+`args.Cell.CellStyle` properties such as:
+ * `Bold`
+ * `FontColor`
+ * `FontSize`
+
+{% tabs %}
+{% highlight razor tabtitle="Index.razor" %}
+
+@using Syncfusion.Blazor.Grids
+@using Syncfusion.Blazor.Navigations
+
+
+
+
+
+ @{
+ var group = context as CaptionTemplateContext;
+ }
+
+ @group.Key
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @{
+ var agg = (AggregateTemplateContext)context;
+ }
+