New to Telerik UI for ASP.NET MVC? Start a free 30-day trial

Excel Export

Updated on Sep 23, 2025

The PivotGridV2 provides built-in Excel export capabilities.

To use the Excel export feature, reference the JSZip library before the Kendo UI JavaScript files in the _Layout.cshtml. For more information, refer to the Excel export requirements.

General

To export the PivotGridV2, call the saveAsExcel() client-side API method of the component.

JS
<script> function buttonClick() { var pivotgrid = $("#pivotgrid").data("kendoPivotGridV2"); pivotgrid.saveAsExcel(); } </script>

The PivotGridV2 also provides an Excel configuration that allows you to set additional options, such as the name of the generated file or the proxy URL.

Razor
 @(Html.Kendo().PivotGridV2() .Name("pivotgrid") .Excel(excel => excel .FileName("Kendo UI PivotGridV2 Export.xlsx") .Filterable(true) .ProxyURL(Url.Action("Excel_Export_Save", "Home")) ) //... Other configuration ... )

Next Steps

See Also

In this article
GeneralNext StepsSee Also
Not finding the help you need?
Contact Support