Syncfusion.OfficeChartToImageConverter.WinForms 31.1.21

Prefix Reserved
dotnet add package Syncfusion.OfficeChartToImageConverter.WinForms --version 31.1.21
                    
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.WinForms -Version 31.1.21
                    
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.21" />
                    
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.21" />
                    
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.21
                    
#r "nuget: Syncfusion.OfficeChartToImageConverter.WinForms, 31.1.21"
                    
#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.21
                    
#: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.21
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.WinForms&version=31.1.21
                    
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.1.21 133 9/22/2025
31.1.20 304 9/16/2025
31.1.19 151 9/11/2025
31.1.18 149 9/9/2025
31.1.17 150 9/5/2025
30.2.7 242 8/25/2025
30.2.6 172 8/18/2025
30.2.5 162 8/13/2025
30.2.4 259 8/7/2025
30.1.42 128 7/28/2025
30.1.41 527 7/22/2025
30.1.40 178 7/14/2025
30.1.39 172 7/8/2025
30.1.38 171 7/1/2025
30.1.37 277 6/25/2025
29.2.11 183 6/16/2025
29.2.10 309 6/9/2025
29.2.9 193 6/5/2025
29.2.8 185 6/3/2025
29.2.7 349 5/26/2025
29.2.5 189 5/20/2025
29.2.4 268 5/14/2025
29.1.41 251 5/5/2025
29.1.40 194 4/28/2025
29.1.39 222 4/21/2025
29.1.38 249 4/14/2025
29.1.37 258 4/8/2025
29.1.35 207 4/1/2025
29.1.33 563 3/25/2025
28.2.12 208 3/19/2025
28.2.11 233 3/10/2025
28.2.9 502 3/3/2025
28.2.7 192 2/25/2025
28.2.6 188 2/17/2025
28.2.5 151 2/11/2025
28.2.4 149 2/4/2025
28.2.3 157 1/29/2025
28.1.41 413 1/20/2025
28.1.39 293 1/13/2025
28.1.38 157 1/7/2025
28.1.37 170 12/31/2024
28.1.36 169 12/23/2024
28.1.35 261 12/18/2024
28.1.33 191 12/12/2024
27.2.5 211 12/2/2024
27.2.4 190 11/26/2024
27.2.3 165 11/22/2024
27.2.2 185 11/15/2024
27.1.58 179 11/4/2024
27.1.57 232 10/28/2024
27.1.56 178 10/23/2024
27.1.55 165 10/21/2024
27.1.53 204 10/14/2024
27.1.52 188 10/7/2024
27.1.51 221 9/30/2024
27.1.50 233 9/23/2024
27.1.48 193 9/18/2024
26.2.14 952 9/9/2024
26.2.13 178 9/5/2024
26.2.12 194 9/2/2024
26.2.11 194 8/27/2024
26.2.10 214 8/19/2024
26.2.9 204 8/12/2024
26.2.8 169 8/5/2024
26.2.7 136 7/29/2024
26.2.5 196 7/25/2024
26.2.4 180 7/24/2024
26.1.42 217 7/15/2024
26.1.41 210 7/8/2024
26.1.40 213 7/1/2024
26.1.39 191 6/24/2024
26.1.38 207 6/18/2024
26.1.35 225 6/11/2024
25.2.7 180 6/3/2024
25.2.6 212 5/28/2024
25.2.5 179 5/21/2024
25.2.4 197 5/14/2024
25.2.3 200 5/8/2024
25.1.42 226 4/29/2024
25.1.41 225 4/23/2024
25.1.40 224 4/15/2024
25.1.39 200 4/8/2024
25.1.38 227 4/1/2024
25.1.37 209 3/26/2024
25.1.35 273 3/15/2024
24.2.9 1,340 3/4/2024
24.2.8 196 2/26/2024
24.2.7 231 2/19/2024
24.2.6 212 2/14/2024
24.2.5 200 2/12/2024
24.2.4 217 2/5/2024
24.2.3 233 1/31/2024
24.1.47 191 1/22/2024
24.1.46 225 1/16/2024
24.1.45 225 1/8/2024
24.1.44 218 1/2/2024
24.1.43 229 12/27/2023
24.1.41 346 12/18/2023
23.2.7 263 12/6/2023
23.2.6 238 11/28/2023
23.2.5 229 11/23/2023
23.2.4 237 11/20/2023
23.1.44 259 11/6/2023
23.1.43 222 10/30/2023
23.1.42 245 10/23/2023
23.1.41 237 10/16/2023
23.1.40 290 10/10/2023
23.1.39 220 10/4/2023
23.1.38 256 9/26/2023
23.1.36 302 9/15/2023
22.2.12 316 9/5/2023
22.2.11 284 8/28/2023
22.2.10 253 8/22/2023
22.2.9 280 8/14/2023
22.2.8 284 8/7/2023
22.2.7 291 8/2/2023
22.2.5 279 7/27/2023
22.1.39 295 7/18/2023
22.1.38 297 7/11/2023
22.1.37 320 7/3/2023
22.1.36 319 6/28/2023
22.1.34 386 6/21/2023
21.2.10 313 6/12/2023
21.2.9 317 6/6/2023
21.2.8 331 5/30/2023
21.2.6 431 5/22/2023
21.2.5 346 5/15/2023
21.2.4 345 5/9/2023
21.2.3 354 5/3/2023
21.1.41 497 4/19/2023
21.1.39 398 4/10/2023
21.1.38 413 4/3/2023
21.1.37 432 3/29/2023
21.1.35 445 3/23/2023
20.4.0.54 1,216 3/13/2023
20.4.0.53 435 3/7/2023
20.4.0.52 445 2/28/2023
20.4.0.51 443 2/21/2023
20.4.0.50 436 2/14/2023
20.4.0.49 460 2/7/2023
20.4.0.48 505 2/1/2023
20.4.0.44 514 1/18/2023
20.4.0.43 552 1/10/2023
20.4.0.42 555 1/4/2023
20.4.0.41 495 12/29/2022
20.4.0.40 463 12/28/2022
20.4.0.38 512 12/21/2022
20.3.0.61 525 12/12/2022
20.3.0.60 485 12/6/2022
20.3.0.59 538 11/29/2022
20.3.0.58 522 11/21/2022
20.3.0.57 921 11/14/2022
20.3.0.56 924 11/8/2022
20.3.0.52 608 10/27/2022
20.3.0.50 609 10/17/2022
20.3.0.49 617 10/11/2022
20.3.0.48 622 10/5/2022
20.3.0.47 643 9/29/2022
20.2.0.50 629 9/20/2022
20.2.0.49 637 9/13/2022
20.2.0.48 684 9/6/2022
20.2.0.46 607 8/30/2022
20.2.0.45 4,860 8/23/2022
20.2.0.44 666 8/16/2022
20.2.0.43 699 8/8/2022
20.2.0.40 672 7/26/2022
20.2.0.39 651 7/19/2022
20.2.0.38 670 7/12/2022
20.2.0.36 692 6/30/2022
20.1.0.61 665 6/20/2022
20.1.0.60 675 6/14/2022
20.1.0.59 655 6/6/2022
20.1.0.58 659 5/30/2022
20.1.0.57 647 5/23/2022
20.1.0.56 674 5/17/2022
20.1.0.55 626 5/12/2022
20.1.0.52 720 5/2/2022
20.1.0.51 1,273 4/26/2022
20.1.0.50 681 4/19/2022
20.1.0.48 760 4/12/2022
20.1.0.47 691 4/4/2022
19.4.0.56 705 3/14/2022
19.4.0.55 707 3/8/2022
19.4.0.54 725 2/28/2022
19.4.0.53 719 2/21/2022
19.4.0.52 683 2/15/2022
19.4.0.50 743 2/8/2022
19.4.0.48 710 1/31/2022
19.4.0.47 690 1/24/2022
19.4.0.43 710 1/18/2022
19.4.0.42 715 1/10/2022
19.4.0.41 637 1/4/2022
19.4.0.40 518 12/28/2021
19.4.0.38 567 12/17/2021
19.3.0.59 527 12/14/2021
19.3.0.57 634 12/7/2021
19.3.0.56 1,371 11/29/2021
19.3.0.55 551 11/23/2021
19.3.0.54 526 11/17/2021
19.3.0.53 591 11/12/2021
19.3.0.48 566 11/3/2021
19.3.0.47 617 10/26/2021
19.3.0.46 583 10/19/2021
19.3.0.45 619 10/12/2021
19.3.0.44 603 10/5/2021
19.3.0.43 683 9/30/2021
19.2.0.62 728 9/13/2021
19.2.0.60 615 9/7/2021
19.2.0.59 624 8/30/2021
19.2.0.57 605 8/24/2021
19.2.0.56 583 8/17/2021
19.2.0.55 647 8/11/2021
19.2.0.51 1,036 8/2/2021
19.2.0.49 629 7/26/2021
19.2.0.48 626 7/19/2021
19.2.0.47 639 7/13/2021
19.2.0.46 635 7/6/2021
19.2.0.44 692 6/30/2021
19.1.0.69 686 6/14/2021
19.1.0.67 680 6/7/2021
19.1.0.66 866 5/31/2021
19.1.0.65 674 5/24/2021
19.1.0.64 759 5/19/2021
19.1.0.63 643 5/13/2021
19.1.0.59 861 5/3/2021
19.1.0.58 639 4/26/2021
19.1.0.57 732 4/20/2021
19.1.0.56 627 4/12/2021
19.1.0.55 659 4/6/2021
19.1.0.54 2,216 3/30/2021
18.4.0.49 642 3/22/2021
18.4.0.48 662 3/16/2021
18.4.0.47 680 3/9/2021
18.4.0.46 641 3/2/2021
18.4.0.44 666 2/23/2021
18.4.0.43 658 2/15/2021
18.4.0.42 653 2/9/2021
18.4.0.41 666 2/2/2021
18.4.0.39 714 1/28/2021
18.4.0.35 806 1/19/2021
18.4.0.34 696 1/12/2021
18.4.0.33 672 1/4/2021
18.4.0.32 644 12/30/2020
18.4.0.31 682 12/22/2020
18.4.0.30 786 12/17/2020
18.3.0.53 720 12/8/2020
18.3.0.52 732 11/30/2020
18.3.0.51 748 11/23/2020
18.3.0.50 714 11/17/2020
18.3.0.48 680 11/10/2020
18.3.0.47 884 11/5/2020
18.3.0.44 784 10/27/2020
18.3.0.42 787 10/20/2020
18.3.0.40 778 10/12/2020
18.3.0.38 763 10/7/2020
18.3.0.35 734 10/1/2020
18.2.0.59 748 9/22/2020
18.2.0.58 708 9/15/2020
18.2.0.57 714 9/8/2020
18.2.0.56 731 9/1/2020
18.2.0.55 713 8/24/2020
18.2.0.54 743 8/18/2020
18.2.0.48 842 8/4/2020
18.2.0.47 801 7/28/2020
18.2.0.46 794 7/21/2020
18.2.0.45 762 7/14/2020
18.2.0.44 1,263 7/6/2020
18.1.0.59 795 6/23/2020
18.1.0.57 846 6/15/2020
18.1.0.56 800 6/9/2020
18.1.0.55 764 6/2/2020
18.1.0.54 804 5/26/2020
18.1.0.53 786 5/19/2020
18.1.0.52 790 5/13/2020
18.1.0.48 785 5/5/2020
18.1.0.46 818 4/28/2020
18.1.0.45 796 4/20/2020
18.1.0.44 945 4/14/2020
18.1.0.43 791 4/7/2020
18.1.0.42 829 4/1/2020
18.1.0.36-beta 566 3/19/2020
17.4.0.55 984 3/10/2020
17.4.0.53 801 3/3/2020
17.4.0.51 817 2/25/2020
17.4.0.50 841 2/18/2020
17.4.0.49 830 2/11/2020
17.4.0.47 1,620 2/5/2020
17.4.0.46 810 1/30/2020
17.4.0.44 893 1/21/2020
17.4.0.43 821 1/14/2020
17.4.0.41 810 1/7/2020
17.4.0.40 821 12/24/2019
17.4.0.39 825 12/17/2019
17.3.0.34 810 12/10/2019
17.3.0.33 926 12/4/2019
17.3.0.30 805 12/3/2019
17.3.0.29 822 11/26/2019
17.3.0.28 816 11/18/2019
17.3.0.27 963 11/12/2019
17.3.0.26 862 11/5/2019
17.3.0.21 854 10/29/2019
17.3.0.19 850 10/22/2019
17.3.0.17 879 10/15/2019
17.3.0.14 914 10/3/2019
17.3.0.9-beta 560 9/20/2019
17.2.0.51 905 9/10/2019
17.2.0.49 860 9/3/2019
17.2.0.47 876 8/27/2019
17.2.0.46 863 8/22/2019
17.2.0.41 894 8/13/2019
17.2.0.40 906 8/6/2019
17.2.0.39 863 7/30/2019
17.2.0.36 868 7/23/2019
17.2.0.35 904 7/17/2019
17.2.0.34 1,035 7/11/2019
17.2.0.28-beta 551 6/27/2019
17.1.0.53 876 6/25/2019
17.1.0.52 947 6/18/2019
17.1.0.51 913 6/11/2019
17.1.0.50 904 6/4/2019
17.1.0.49 904 5/28/2019
17.1.0.48 923 5/21/2019
17.1.0.47 915 5/14/2019
17.1.0.44 894 5/7/2019
17.1.0.43 889 4/30/2019
17.1.0.42 1,013 4/23/2019
17.1.0.41 880 4/16/2019
17.1.0.40 904 4/9/2019
17.1.0.38 990 3/29/2019
17.1.0.32-beta 615 3/13/2019
16.4.0.54 1,069 2/19/2019
16.4.0.53 1,034 2/13/2019
16.4.0.52 1,045 2/5/2019
16.4.0.48 988 1/22/2019
16.4.0.47 978 1/16/2019
16.4.0.46 1,018 1/8/2019
16.4.0.44 1,004 12/24/2018
16.4.0.42 1,057 12/17/2018
16.4.0.40-beta 730 12/10/2018
16.3.0.36 1,078 11/27/2018
16.3.0.35-beta 756 11/23/2018
16.3.0.29 1,299 10/30/2018
16.3.0.21 1,229 9/21/2018