How to export a .NET MAUI DataGrid (SfDataGrid) to excel or PDF using ToolBarItems of a Page?
Exporting .NET MAUI DataGrid to Excel or PDF can be achieved by adding ToolbarItems
to a ContentPage. The export initiation is handled via the Clicked
event of the ToolbarItem.
Refer to the code example below, where ToolbarItems
are added to facilitate exporting the grid to Excel and PDF formats.
xaml:
<ContentPage.ToolbarItems WidthRequest="100"
HeightRequest="50">
<ToolbarItem Text="Export to Excel"
Order="Primary"
Priority="0"
Clicked="ToolbarItem_Clicked"/>
<ToolbarItem Text="Export to Pdf"
Order="Primary"
Priority="0"
Clicked="ToolbarItem_Clicked_1" />
</ContentPage.ToolbarItems>
<syncfusion:SfDataGrid x:Name="dataGrid"
ColumnWidthMode="Auto"
ItemsSource="{Binding Employees}">
</syncfusion:SfDataGrid>
Download the complete sample from GitHub
Conclusion
I hope you enjoyed learning how to export a .NET MAUI DataGrid (SfDataGrid) to Excel or PDF using ToolBarItems of a Page.
You can refer to our .NET MAUI DataGrid feature tour page to learn about its other groundbreaking feature representations. Explore our .NET MAUI DataGrid Documentation to understand how to present and manipulate data. For current customers, check out our .NET MAUI components on the License and Downloads page. If you are new to Syncfusion®, try our 30-day free trial to explore our .NET MAUI DataGrid and other .NET MAUI components. Please let us know in the comments section if you have any queries or require clarification. You can also contact us through our support forums, Direct-Trac or feedback portal, or the feedback portal. We are always happy to assist you!