Syncfusion.OfficeChartToImageConverter.UWP 20.4.0.48

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.OfficeChartToImageConverter.UWP --version 20.4.0.48
                    
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.UWP -Version 20.4.0.48
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Syncfusion.OfficeChartToImageConverter.UWP" Version="20.4.0.48" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.OfficeChartToImageConverter.UWP" Version="20.4.0.48" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.OfficeChartToImageConverter.UWP" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Syncfusion.OfficeChartToImageConverter.UWP --version 20.4.0.48
                    
#r "nuget: Syncfusion.OfficeChartToImageConverter.UWP, 20.4.0.48"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Syncfusion.OfficeChartToImageConverter.UWP@20.4.0.48
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.OfficeChartToImageConverter.UWP&version=20.4.0.48
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.UWP&version=20.4.0.48
                    
Install as a Cake Tool

Syncfusion UWP Office Chart To Image Converter

The Syncfusion UWP Word chart to Image Library is a .NET helper class library that allows you to convert the PowerPoint and Word charts to PDF or images in Universal Windows Platform application without Microsoft Office dependencies.

UWP Word chart to Image Library

Features overview | Docs | API Reference | Online Demo | GitHub Examples | Blogs | Support | Forums | Feedback

Key Features

System Requirements

Getting started

You can fetch the Syncfusion UWP Office Chart to Image converter library NuGet by simply running the command Install-Package Syncfusion.OfficeChartToImageConverter.UWP from the Package Manager Console in Visual Studio.

Try the following code example to convert a Word document into PDF document.

using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
using Syncfusion.DocToPDFConverter;
using Syncfusion.OfficeChartToImageConverter;
using Syncfusion.OfficeChart;
using Syncfusion.Pdf;
//Loads an existing Word document.
using (WordDocument wordDocument = new WordDocument("Template.docx", FormatType.Automatic))
{
    //Initializes the ChartToImageConverter for converting charts during Word to pdf conversion
    wordDocument.ChartToImageConverter = new ChartToImageConverter();
    //Creates an instance of the DocToPDFConverter.
    using (DocToPDFConverter converter = new DocToPDFConverter())
    {
        //Converts Word document into PDF document.
        using (PdfDocument pdfDocument = converter.ConvertToPDF(wordDocument))
        {
            //Saves the PDF file.
            pdfDocument.Save("Sample.pdf");
        }
    }
}

Try the following code example to convert the PowerPoint Presentation to PDF.

//Namespaces to perform PPTX to PDF conversion
using Syncfusion.Presentation;
using Syncfusion.OfficeChartToImageConverter;
using Syncfusion.PresentationToPdfConverter;
using Syncfusion.Pdf;
//Opens a PowerPoint Presentation 
using (IPresentation pptxDoc = Presentation.Open("Sample.pptx"))
{
    //Creates an instance of ChartToImageConverter and assigns it to ChartToImageConverter property of Presentation
    pptxDoc.ChartToImageConverter = new ChartToImageConverter();
    //Convert the PowerPoint document to PDF document.
    using (PdfDocument pdfDocument = PresentationToPdfConverter.Convert(pptxDoc))
    {
        //Creates an instance of memory stream.
        using (MemoryStream pdfStream = new MemoryStream())
        {
            //Save the converted PDF document to memory stream.
            pdfDocument.Save(pdfStream);
        }
    }
}

For more information to get started, refer to our Getting Started Documentation page.

License

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. You can purchase a license here or start a free 30-day trial here.

About Syncfusion

Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 27,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1700+ components and frameworks for web (Blazor, Flutter, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and jQuery), mobile (.NET MAUI (Preview), Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI (Preview), Flutter, Xamarin and UWP). We provide ready-to-deploy enterprise software for dashboards, reports, data integration, and big data processing. Many customers have saved millions in licensing fees by deploying our software.


sales@syncfusion.com | www.syncfusion.com | Toll Free: 1-888-9 DOTNET

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Syncfusion.OfficeChartToImageConverter.UWP:

Package Downloads
Syncfusion.Presentation.UWP

This package provides the functionality to utilize the features of Syncfusion® UWP Presentation library and more.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
31.1.21 101 9/22/2025
31.1.20 300 9/16/2025
31.1.19 177 9/11/2025
31.1.18 175 9/10/2025
31.1.17 167 9/5/2025
30.2.7 203 8/25/2025
30.2.6 175 8/18/2025
30.2.5 172 8/13/2025
30.2.4 257 8/7/2025
30.1.42 124 7/28/2025
30.1.41 555 7/22/2025
30.1.40 186 7/14/2025
30.1.39 187 7/8/2025
30.1.38 183 7/1/2025
30.1.37 207 6/25/2025
29.2.11 193 6/16/2025
29.2.10 315 6/9/2025
29.2.9 207 6/5/2025
29.2.8 206 6/3/2025
29.2.7 203 5/26/2025
29.2.5 195 5/21/2025
29.2.4 285 5/14/2025
29.1.41 208 5/5/2025
29.1.40 217 4/28/2025
29.1.39 227 4/21/2025
29.1.38 264 4/14/2025
29.1.37 231 4/8/2025
29.1.35 213 4/1/2025
29.1.33 547 3/25/2025
28.2.12 197 3/19/2025
28.2.11 232 3/10/2025
28.2.9 327 3/4/2025
28.2.7 185 2/25/2025
28.2.6 172 2/17/2025
28.2.5 177 2/11/2025
28.2.4 180 2/4/2025
28.2.3 4,059 1/29/2025
28.1.41 417 1/20/2025
28.1.39 246 1/13/2025
28.1.38 166 1/7/2025
28.1.37 177 12/31/2024
28.1.36 179 12/23/2024
28.1.35 287 12/18/2024
28.1.33 177 12/12/2024
27.2.5 179 12/2/2024
27.2.4 173 11/26/2024
27.2.3 177 11/22/2024
27.2.2 183 11/15/2024
27.1.58 193 11/4/2024
27.1.57 165 10/28/2024
27.1.56 177 10/23/2024
27.1.55 158 10/21/2024
27.1.53 208 10/14/2024
27.1.52 204 10/7/2024
27.1.51 197 9/30/2024
27.1.50 193 9/23/2024
27.1.48 202 9/18/2024
26.2.14 252 9/9/2024
26.2.13 198 9/5/2024
26.2.12 196 9/2/2024
26.2.11 212 8/27/2024
26.2.10 222 8/19/2024
26.2.9 216 8/12/2024
26.2.8 202 8/5/2024
26.2.7 121 7/29/2024
26.2.5 152 7/26/2024
26.2.4 153 7/24/2024
26.1.42 184 7/15/2024
26.1.41 195 7/8/2024
26.1.40 209 7/1/2024
26.1.39 212 6/24/2024
26.1.38 232 6/18/2024
26.1.35 4,192 6/11/2024
25.2.7 205 6/3/2024
25.2.6 187 5/28/2024
25.2.5 210 5/21/2024
25.2.4 182 5/14/2024
25.2.3 206 5/8/2024
25.1.42 213 4/29/2024
25.1.41 221 4/23/2024
25.1.40 219 4/15/2024
25.1.39 215 4/8/2024
25.1.38 240 4/1/2024
25.1.37 227 3/26/2024
25.1.35 307 3/15/2024
24.2.9 325 3/4/2024
24.2.8 372 2/26/2024
24.2.7 391 2/19/2024
24.2.6 372 2/14/2024
24.2.5 369 2/12/2024
24.2.4 409 2/5/2024
24.2.3 406 1/31/2024
24.1.47 422 1/22/2024
24.1.46 419 1/16/2024
24.1.45 491 1/8/2024
24.1.44 448 1/2/2024
24.1.43 512 12/27/2023
24.1.41 547 12/18/2023
23.2.7 611 12/6/2023
23.2.6 571 11/28/2023
23.2.5 592 11/23/2023
23.2.4 635 11/20/2023
23.1.44 598 11/6/2023
23.1.43 594 10/30/2023
23.1.42 615 10/23/2023
23.1.41 634 10/16/2023
23.1.40 1,546 10/10/2023
23.1.39 644 10/4/2023
23.1.38 687 9/26/2023
23.1.36 708 9/15/2023
22.2.12 740 9/5/2023
22.2.11 790 8/28/2023
22.2.10 745 8/22/2023
22.2.9 798 8/14/2023
22.2.8 780 8/7/2023
22.2.7 855 8/2/2023
22.2.5 898 7/27/2023
22.1.39 856 7/18/2023
22.1.38 879 7/11/2023
22.1.37 851 7/3/2023
22.1.36 888 6/28/2023
22.1.34 2,780 6/21/2023
21.2.10 904 6/12/2023
21.2.9 907 6/6/2023
21.2.8 865 5/30/2023
21.2.6 932 5/22/2023
21.2.5 936 5/15/2023
21.2.4 940 5/9/2023
21.2.3 999 5/3/2023
21.1.41 1,015 4/19/2023
21.1.39 993 4/10/2023
21.1.38 1,046 4/3/2023
21.1.37 1,079 3/29/2023
21.1.35 1,106 3/23/2023
20.4.0.54 1,068 3/13/2023
20.4.0.53 1,055 3/7/2023
20.4.0.52 1,054 2/28/2023
20.4.0.51 1,096 2/21/2023
20.4.0.50 1,105 2/14/2023
20.4.0.49 1,093 2/7/2023
20.4.0.48 1,173 2/1/2023
20.4.0.44 1,104 1/18/2023
20.4.0.43 1,138 1/10/2023
20.4.0.42 1,202 1/4/2023
20.4.0.41 1,176 12/29/2022
20.4.0.40 1,158 12/28/2022
20.4.0.38 1,233 12/21/2022
20.3.0.61 1,235 12/12/2022
20.3.0.60 1,233 12/6/2022
20.3.0.59 1,203 11/29/2022
20.3.0.58 1,259 11/22/2022
20.3.0.57 1,246 11/15/2022
20.3.0.56 1,229 11/8/2022
20.3.0.52 1,290 10/27/2022
20.3.0.50 1,334 10/18/2022
20.3.0.49 1,405 10/11/2022
20.3.0.48 1,376 10/5/2022
20.3.0.47 1,378 9/29/2022
20.2.0.50 1,461 9/20/2022
20.2.0.49 1,490 9/13/2022
20.2.0.48 1,408 9/6/2022
20.2.0.46 1,472 8/30/2022
20.2.0.45 1,452 8/23/2022
20.2.0.44 1,429 8/16/2022
20.2.0.43 2,604 8/8/2022
20.2.0.40 1,463 7/26/2022
20.2.0.39 1,460 7/19/2022
20.2.0.38 1,395 7/12/2022
20.2.0.36 30,394 6/30/2022
20.1.0.61 1,462 6/20/2022
20.1.0.60 1,426 6/14/2022
20.1.0.59 1,743 6/6/2022
20.1.0.58 1,451 5/31/2022
20.1.0.57 1,495 5/23/2022
20.1.0.56 1,479 5/17/2022
20.1.0.55 1,518 5/12/2022
20.1.0.52 1,662 5/3/2022
20.1.0.51 1,514 4/26/2022
20.1.0.50 1,518 4/19/2022
20.1.0.48 1,566 4/12/2022
20.1.0.47 1,561 4/4/2022
19.4.0.56 1,685 3/14/2022
19.4.0.55 1,571 3/8/2022
19.4.0.54 1,508 2/28/2022
19.4.0.53 1,441 2/22/2022
19.4.0.52 1,551 2/15/2022
19.4.0.50 1,500 2/8/2022
19.4.0.48 1,559 1/31/2022
19.4.0.47 1,523 1/25/2022
19.4.0.43 1,516 1/18/2022
19.4.0.42 1,421 1/11/2022
19.4.0.41 1,254 1/4/2022
19.4.0.40 1,292 12/28/2021
19.4.0.38 1,261 12/17/2021
19.3.0.59 1,289 12/14/2021
19.3.0.57 1,257 12/7/2021
19.3.0.56 1,751 11/29/2021
19.3.0.55 1,551 11/23/2021
19.3.0.54 1,283 11/17/2021
19.3.0.53 1,241 11/12/2021
19.3.0.48 1,359 11/3/2021
19.3.0.47 1,450 10/26/2021
19.3.0.46 1,380 10/19/2021
19.3.0.45 1,309 10/12/2021
19.3.0.44 1,453 10/5/2021
19.3.0.43 1,421 9/30/2021
19.2.0.62 1,423 9/13/2021
19.2.0.60 1,422 9/7/2021
19.2.0.59 1,440 8/30/2021
19.2.0.57 1,413 8/24/2021
19.2.0.56 1,384 8/17/2021
19.2.0.55 1,470 8/11/2021
19.2.0.51 1,437 8/2/2021
19.2.0.49 1,410 7/26/2021
19.2.0.48 1,471 7/19/2021
19.2.0.47 1,510 7/13/2021
19.2.0.46 1,659 7/6/2021
19.2.0.44 21,210 6/30/2021
19.1.0.69 1,489 6/14/2021
19.1.0.67 1,436 6/7/2021
19.1.0.66 1,493 5/31/2021
19.1.0.65 1,423 5/24/2021
19.1.0.64 1,450 5/19/2021
19.1.0.63 1,469 5/13/2021
19.1.0.59 1,492 5/3/2021
19.1.0.58 1,479 4/26/2021
19.1.0.57 1,512 4/20/2021
19.1.0.56 1,448 4/12/2021
19.1.0.55 1,424 4/6/2021
19.1.0.54 1,467 3/30/2021
18.4.0.49 1,473 3/22/2021
18.4.0.48 1,485 3/16/2021
18.4.0.47 1,815 3/9/2021
18.4.0.46 1,523 3/2/2021
18.4.0.44 1,412 2/23/2021
18.4.0.43 1,410 2/15/2021
18.4.0.42 1,521 2/9/2021
18.4.0.41 1,468 2/2/2021
18.4.0.39 1,391 1/28/2021
18.4.0.35 1,490 1/19/2021
18.4.0.34 1,471 1/12/2021
18.4.0.33 1,494 1/4/2021
18.4.0.32 1,460 12/30/2020
18.4.0.31 1,432 12/22/2020
18.4.0.30 1,611 12/17/2020
18.3.0.53 1,480 12/8/2020
18.3.0.52 1,513 11/30/2020
18.3.0.51 1,606 11/23/2020
18.3.0.50 1,524 11/17/2020
18.3.0.48 1,532 11/10/2020
18.3.0.47 1,603 11/5/2020
18.3.0.44 1,585 10/27/2020
18.3.0.42 1,623 10/20/2020
18.3.0.40 1,566 10/12/2020
18.3.0.38 1,632 10/7/2020
18.3.0.35 9,655 10/1/2020
18.2.0.59 1,565 9/22/2020
18.2.0.58 1,466 9/15/2020
18.2.0.57 1,525 9/8/2020
18.2.0.56 1,576 9/1/2020
18.2.0.55 1,608 8/25/2020
18.2.0.54 1,592 8/18/2020
18.2.0.48 1,634 8/4/2020
18.2.0.47 1,613 7/28/2020
18.2.0.46 1,614 7/21/2020
18.2.0.45 1,599 7/14/2020
18.2.0.44 1,661 7/6/2020
18.1.0.59 1,686 6/23/2020
18.1.0.57 1,652 6/16/2020
18.1.0.56 1,750 6/9/2020
18.1.0.55 1,654 6/2/2020
18.1.0.54 1,678 5/27/2020
18.1.0.53 1,699 5/19/2020
18.1.0.52 1,681 5/13/2020
18.1.0.48 1,713 5/5/2020
18.1.0.46 1,658 4/28/2020
18.1.0.45 1,652 4/21/2020
18.1.0.44 1,675 4/14/2020
18.1.0.43 1,646 4/7/2020
18.1.0.42 1,674 4/1/2020
18.1.0.36-beta 1,251 3/19/2020
17.4.0.55 1,724 3/10/2020
17.4.0.53 1,613 3/3/2020
17.4.0.51 1,722 2/25/2020
17.4.0.50 1,751 2/18/2020
17.4.0.49 1,717 2/11/2020
17.4.0.47 1,683 2/5/2020
17.4.0.46 1,674 1/30/2020
17.4.0.44 1,723 1/21/2020
17.4.0.43 1,727 1/14/2020
17.4.0.41 1,698 1/7/2020
17.4.0.40 1,663 12/24/2019
17.4.0.39 1,743 12/17/2019
17.3.0.34 1,708 12/10/2019
17.3.0.33 1,678 12/4/2019
17.3.0.30 1,689 12/3/2019
17.3.0.29 1,655 11/26/2019
17.3.0.28 1,696 11/19/2019
17.3.0.27 1,670 11/12/2019
17.3.0.26 1,720 11/5/2019
17.3.0.21 1,729 10/29/2019
17.3.0.19 1,721 10/22/2019
17.3.0.17 1,766 10/15/2019
17.3.0.14 1,735 10/3/2019
17.3.0.9-beta 1,341 9/20/2019
17.2.0.51 1,722 9/10/2019
17.2.0.49 1,742 9/3/2019
17.2.0.47 1,787 8/27/2019
17.2.0.46 1,775 8/22/2019
17.2.0.41 1,734 8/13/2019
17.2.0.40 1,742 8/6/2019
17.2.0.39 1,817 7/30/2019
17.2.0.36 1,706 7/23/2019
17.2.0.35 1,763 7/17/2019
17.2.0.34 1,789 7/11/2019
17.2.0.28-beta 1,289 6/27/2019
17.1.0.53 1,772 6/25/2019
17.1.0.52 1,726 6/18/2019
17.1.0.51 1,761 6/11/2019
17.1.0.50 1,769 6/4/2019
17.1.0.49 1,722 5/28/2019
17.1.0.48 1,775 5/21/2019
17.1.0.47 1,808 5/14/2019
17.1.0.44 1,766 5/7/2019
17.1.0.43 1,798 4/30/2019
17.1.0.42 1,835 4/23/2019
17.1.0.41 1,779 4/16/2019
17.1.0.40 1,754 4/9/2019
17.1.0.38 1,825 3/29/2019
17.1.0.32-beta 1,274 3/13/2019
16.4.0.54 1,957 2/19/2019
16.4.0.53 1,872 2/13/2019
16.4.0.52 2,365 2/5/2019
16.4.0.48 1,907 1/22/2019
16.4.0.47 1,945 1/16/2019
16.4.0.46 1,958 1/8/2019
16.4.0.44 1,966 12/24/2018
16.4.0.42 1,960 12/17/2018
16.4.0.40-beta 1,501 12/10/2018
16.3.0.36 1,989 11/27/2018
16.3.0.35-beta 1,482 11/23/2018
16.3.0.29 2,041 10/30/2018
16.3.0.21 2,057 9/21/2018
16.3.0.17-beta 1,517 9/12/2018
16.2.0.50 2,107 8/28/2018
16.2.0.46 2,223 8/8/2018