Syncfusion.OfficeChartToImageConverter.WinForms 31.1.22

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.OfficeChartToImageConverter.WinForms --version 31.1.22
                    
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.WinForms -Version 31.1.22
                    
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.WinForms" Version="31.1.22" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.OfficeChartToImageConverter.WinForms" Version="31.1.22" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.OfficeChartToImageConverter.WinForms" />
                    
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.WinForms --version 31.1.22
                    
#r "nuget: Syncfusion.OfficeChartToImageConverter.WinForms, 31.1.22"
                    
#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.WinForms@31.1.22
                    
#: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.WinForms&version=31.1.22
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.WinForms&version=31.1.22
                    
Install as a Cake Tool

Syncfusion® WinForms Office Chart To Image Converter

The Syncfusion® WinForms 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 any Windows Forms application without Microsoft Office dependencies.

WinForms 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® WinForms Office Chart to Image converter library NuGet by simply running the command Install-Package Syncfusion.OfficeChartToImageConverter.WinForms 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® licensed software, including this component, is subject to the terms and conditions of Syncfusion® EULA. You can purchase a licnense 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 29,000 customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1800+ 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, Flutter, Xamarin, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, .NET MAUI, 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.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Syncfusion.OfficeChartToImageConverter.WinForms:

Repository Stars
syncfusion/winforms-demos
This repository contains the samples for Syncfusion Windows Forms UI Controls and File Format libraries and the guide to use them.
Version Downloads Last Updated
31.2.5 89 11/3/2025
31.2.4 171 10/28/2025
31.2.3 173 10/21/2025
31.2.2 169 10/15/2025
31.1.23 171 10/6/2025
31.1.22 192 9/30/2025
31.1.21 185 9/22/2025
31.1.20 316 9/16/2025
31.1.19 170 9/11/2025
31.1.18 177 9/9/2025
31.1.17 186 9/5/2025
30.2.7 342 8/25/2025
30.2.6 199 8/18/2025
30.2.5 180 8/13/2025
30.2.4 284 8/7/2025
30.1.42 171 7/28/2025
30.1.41 561 7/22/2025
30.1.40 199 7/14/2025
30.1.39 191 7/8/2025
30.1.38 190 7/1/2025
30.1.37 321 6/25/2025
29.2.11 207 6/16/2025
29.2.10 345 6/9/2025
29.2.9 223 6/5/2025
29.2.8 202 6/3/2025
29.2.7 379 5/26/2025
29.2.5 214 5/20/2025
29.2.4 294 5/14/2025
29.1.41 288 5/5/2025
29.1.40 212 4/28/2025
29.1.39 232 4/21/2025
29.1.38 291 4/14/2025
29.1.37 288 4/8/2025
29.1.35 232 4/1/2025
29.1.33 593 3/25/2025
28.2.12 242 3/19/2025
28.2.11 265 3/10/2025
28.2.9 527 3/3/2025
28.2.7 220 2/25/2025
28.2.6 218 2/17/2025
28.2.5 186 2/11/2025
28.2.4 174 2/4/2025
28.2.3 179 1/29/2025
28.1.41 443 1/20/2025
28.1.39 315 1/13/2025
28.1.38 179 1/7/2025
28.1.37 194 12/31/2024
28.1.36 191 12/23/2024
28.1.35 289 12/18/2024
28.1.33 207 12/12/2024
27.2.5 238 12/2/2024
27.2.4 212 11/26/2024
27.2.3 197 11/22/2024
27.2.2 204 11/15/2024
27.1.58 194 11/4/2024
27.1.57 267 10/28/2024
27.1.56 203 10/23/2024
27.1.55 177 10/21/2024
27.1.53 236 10/14/2024
27.1.52 209 10/7/2024
27.1.51 259 9/30/2024
27.1.50 257 9/23/2024
27.1.48 229 9/18/2024
26.2.14 1,008 9/9/2024
26.2.13 203 9/5/2024
26.2.12 215 9/2/2024
26.2.11 209 8/27/2024
26.2.10 237 8/19/2024
26.2.9 232 8/12/2024
26.2.8 192 8/5/2024
26.2.7 167 7/29/2024
26.2.5 221 7/25/2024
26.2.4 202 7/24/2024
26.1.42 244 7/15/2024
26.1.41 232 7/8/2024
26.1.40 240 7/1/2024
26.1.39 208 6/24/2024
26.1.38 219 6/18/2024
26.1.35 243 6/11/2024
25.2.7 207 6/3/2024
25.2.6 239 5/28/2024
25.2.5 212 5/21/2024
25.2.4 219 5/14/2024
25.2.3 219 5/8/2024
25.1.42 254 4/29/2024
25.1.41 250 4/23/2024
25.1.40 250 4/15/2024
25.1.39 233 4/8/2024
25.1.38 253 4/1/2024
25.1.37 226 3/26/2024
25.1.35 300 3/15/2024
24.2.9 1,450 3/4/2024
24.2.8 223 2/26/2024
24.2.7 259 2/19/2024
24.2.6 233 2/14/2024
24.2.5 228 2/12/2024
24.2.4 239 2/5/2024
24.2.3 262 1/31/2024
24.1.47 209 1/22/2024
24.1.46 252 1/16/2024
24.1.45 245 1/8/2024
24.1.44 250 1/2/2024
24.1.43 256 12/27/2023
24.1.41 371 12/18/2023
23.2.7 287 12/6/2023
23.2.6 263 11/28/2023
23.2.5 252 11/23/2023
23.2.4 260 11/20/2023
23.1.44 288 11/6/2023
23.1.43 227 10/30/2023
23.1.42 271 10/23/2023
23.1.41 247 10/16/2023
23.1.40 315 10/10/2023
23.1.39 243 10/4/2023
23.1.38 279 9/26/2023
23.1.36 320 9/15/2023
22.2.12 345 9/5/2023
22.2.11 313 8/28/2023
22.2.10 277 8/22/2023
22.2.9 312 8/14/2023
22.2.8 306 8/7/2023
22.2.7 307 8/2/2023
22.2.5 294 7/27/2023
22.1.39 330 7/18/2023
22.1.38 327 7/11/2023
22.1.37 333 7/3/2023
22.1.36 332 6/28/2023
22.1.34 414 6/21/2023
21.2.10 331 6/12/2023
21.2.9 347 6/6/2023
21.2.8 352 5/30/2023
21.2.6 458 5/22/2023
21.2.5 381 5/15/2023
21.2.4 376 5/9/2023
21.2.3 385 5/3/2023
21.1.41 523 4/19/2023
21.1.39 440 4/10/2023
21.1.38 434 4/3/2023
21.1.37 457 3/29/2023
21.1.35 474 3/23/2023
20.4.0.54 1,236 3/13/2023
20.4.0.53 464 3/7/2023
20.4.0.52 484 2/28/2023
20.4.0.51 453 2/21/2023
20.4.0.50 464 2/14/2023
20.4.0.49 490 2/7/2023
20.4.0.48 541 2/1/2023
20.4.0.44 546 1/18/2023
20.4.0.43 579 1/10/2023
20.4.0.42 586 1/4/2023
20.4.0.41 523 12/29/2022
20.4.0.40 497 12/28/2022
20.4.0.38 550 12/21/2022
20.3.0.61 554 12/12/2022
20.3.0.60 512 12/6/2022
20.3.0.59 570 11/29/2022
20.3.0.58 565 11/21/2022
20.3.0.57 943 11/14/2022
20.3.0.56 979 11/8/2022
20.3.0.52 638 10/27/2022
20.3.0.50 641 10/17/2022
20.3.0.49 650 10/11/2022
20.3.0.48 658 10/5/2022
20.3.0.47 680 9/29/2022
20.2.0.50 678 9/20/2022
20.2.0.49 669 9/13/2022
20.2.0.48 717 9/6/2022
20.2.0.46 656 8/30/2022
20.2.0.45 4,972 8/23/2022
20.2.0.44 707 8/16/2022
20.2.0.43 726 8/8/2022
20.2.0.40 703 7/26/2022
20.2.0.39 685 7/19/2022
20.2.0.38 710 7/12/2022
20.2.0.36 724 6/30/2022
20.1.0.61 689 6/20/2022
20.1.0.60 705 6/14/2022
20.1.0.59 685 6/6/2022
20.1.0.58 687 5/30/2022
20.1.0.57 683 5/23/2022
20.1.0.56 706 5/17/2022
20.1.0.55 649 5/12/2022
20.1.0.52 751 5/2/2022
20.1.0.51 1,307 4/26/2022
20.1.0.50 725 4/19/2022
20.1.0.48 795 4/12/2022
20.1.0.47 728 4/4/2022
19.4.0.56 728 3/14/2022
19.4.0.55 740 3/8/2022
19.4.0.54 755 2/28/2022
19.4.0.53 747 2/21/2022
19.4.0.52 717 2/15/2022
19.4.0.50 778 2/8/2022
19.4.0.48 744 1/31/2022
19.4.0.47 717 1/24/2022
19.4.0.43 749 1/18/2022
19.4.0.42 755 1/10/2022
19.4.0.41 672 1/4/2022
19.4.0.40 553 12/28/2021
19.4.0.38 597 12/17/2021
19.3.0.59 555 12/14/2021
19.3.0.57 696 12/7/2021
19.3.0.56 1,406 11/29/2021
19.3.0.55 591 11/23/2021
19.3.0.54 554 11/17/2021
19.3.0.53 626 11/12/2021
19.3.0.48 601 11/3/2021
19.3.0.47 651 10/26/2021
19.3.0.46 616 10/19/2021
19.3.0.45 656 10/12/2021
19.3.0.44 636 10/5/2021
19.3.0.43 720 9/30/2021
19.2.0.62 766 9/13/2021
19.2.0.60 643 9/7/2021
19.2.0.59 663 8/30/2021
19.2.0.57 645 8/24/2021
19.2.0.56 618 8/17/2021
19.2.0.55 683 8/11/2021
19.2.0.51 1,063 8/2/2021
19.2.0.49 656 7/26/2021
19.2.0.48 655 7/19/2021
19.2.0.47 672 7/13/2021
19.2.0.46 661 7/6/2021
19.2.0.44 729 6/30/2021
19.1.0.69 719 6/14/2021
19.1.0.67 706 6/7/2021
19.1.0.66 908 5/31/2021
19.1.0.65 706 5/24/2021
19.1.0.64 790 5/19/2021
19.1.0.63 677 5/13/2021
19.1.0.59 883 5/3/2021
19.1.0.58 676 4/26/2021
19.1.0.57 762 4/20/2021
19.1.0.56 660 4/12/2021
19.1.0.55 690 4/6/2021
19.1.0.54 2,270 3/30/2021
18.4.0.49 680 3/22/2021
18.4.0.48 691 3/16/2021
18.4.0.47 713 3/9/2021
18.4.0.46 676 3/2/2021
18.4.0.44 700 2/23/2021
18.4.0.43 696 2/15/2021
18.4.0.42 693 2/9/2021
18.4.0.41 707 2/2/2021
18.4.0.39 750 1/28/2021
18.4.0.35 839 1/19/2021
18.4.0.34 736 1/12/2021
18.4.0.33 709 1/4/2021
18.4.0.32 675 12/30/2020
18.4.0.31 720 12/22/2020
18.4.0.30 821 12/17/2020
18.3.0.53 754 12/8/2020
18.3.0.52 769 11/30/2020
18.3.0.51 789 11/23/2020
18.3.0.50 739 11/17/2020
18.3.0.48 717 11/10/2020
18.3.0.47 928 11/5/2020
18.3.0.44 821 10/27/2020
18.3.0.42 821 10/20/2020
18.3.0.40 813 10/12/2020
18.3.0.38 795 10/7/2020
18.3.0.35 775 10/1/2020
18.2.0.59 787 9/22/2020
18.2.0.58 743 9/15/2020
18.2.0.57 753 9/8/2020
18.2.0.56 768 9/1/2020
18.2.0.55 755 8/24/2020
18.2.0.54 778 8/18/2020
18.2.0.48 881 8/4/2020
18.2.0.47 833 7/28/2020
18.2.0.46 831 7/21/2020
18.2.0.45 799 7/14/2020
18.2.0.44 1,295 7/6/2020
18.1.0.59 830 6/23/2020
18.1.0.57 884 6/15/2020
18.1.0.56 839 6/9/2020
18.1.0.55 802 6/2/2020
18.1.0.54 833 5/26/2020
18.1.0.53 820 5/19/2020
18.1.0.52 829 5/13/2020
18.1.0.48 813 5/5/2020
18.1.0.46 857 4/28/2020
18.1.0.45 835 4/20/2020
18.1.0.44 982 4/14/2020
18.1.0.43 818 4/7/2020
18.1.0.42 859 4/1/2020
18.1.0.36-beta 605 3/19/2020
17.4.0.55 1,027 3/10/2020
17.4.0.53 829 3/3/2020
17.4.0.51 866 2/25/2020
17.4.0.50 875 2/18/2020
17.4.0.49 868 2/11/2020
17.4.0.47 1,658 2/5/2020
17.4.0.46 845 1/30/2020
17.4.0.44 928 1/21/2020
17.4.0.43 850 1/14/2020
17.4.0.41 845 1/7/2020
17.4.0.40 852 12/24/2019
17.4.0.39 860 12/17/2019
17.3.0.34 853 12/10/2019
17.3.0.33 961 12/4/2019
17.3.0.30 836 12/3/2019
17.3.0.29 857 11/26/2019
17.3.0.28 839 11/18/2019
17.3.0.27 1,004 11/12/2019
17.3.0.26 901 11/5/2019
17.3.0.21 890 10/29/2019
17.3.0.19 878 10/22/2019
17.3.0.17 905 10/15/2019
17.3.0.14 950 10/3/2019
17.3.0.9-beta 588 9/20/2019
17.2.0.51 941 9/10/2019
17.2.0.49 896 9/3/2019
17.2.0.47 906 8/27/2019
17.2.0.46 898 8/22/2019
17.2.0.41 932 8/13/2019
17.2.0.40 938 8/6/2019
17.2.0.39 916 7/30/2019
17.2.0.36 907 7/23/2019
17.2.0.35 938 7/17/2019
17.2.0.34 1,066 7/11/2019
17.2.0.28-beta 587 6/27/2019
17.1.0.53 915 6/25/2019
17.1.0.52 990 6/18/2019
17.1.0.51 953 6/11/2019
17.1.0.50 939 6/4/2019
17.1.0.49 941 5/28/2019
17.1.0.48 951 5/21/2019
17.1.0.47 932 5/14/2019
17.1.0.44 930 5/7/2019
17.1.0.43 916 4/30/2019
17.1.0.42 1,053 4/23/2019
17.1.0.41 914 4/16/2019
17.1.0.40 942 4/9/2019
17.1.0.38 1,027 3/29/2019
17.1.0.32-beta 650 3/13/2019
16.4.0.54 1,100 2/19/2019
16.4.0.53 1,067 2/13/2019
16.4.0.52 1,081 2/5/2019
16.4.0.48 1,036 1/22/2019
16.4.0.47 1,011 1/16/2019
16.4.0.46 1,055 1/8/2019
16.4.0.44 1,039 12/24/2018
16.4.0.42 1,096 12/17/2018
16.4.0.40-beta 773 12/10/2018
16.3.0.36 1,115 11/27/2018
16.3.0.35-beta 794 11/23/2018
16.3.0.29 1,335 10/30/2018
16.3.0.21 1,265 9/21/2018