Syncfusion.OfficeChartToImageConverter.WinForms 20.2.0.39

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 20.2.0.39
                    
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.WinForms -Version 20.2.0.39
                    
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="20.2.0.39" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.OfficeChartToImageConverter.WinForms" Version="20.2.0.39" />
                    
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 20.2.0.39
                    
#r "nuget: Syncfusion.OfficeChartToImageConverter.WinForms, 20.2.0.39"
                    
#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@20.2.0.39
                    
#: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=20.2.0.39
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.WinForms&version=20.2.0.39
                    
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’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's 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 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.
.NET net5.0 was computed.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 is compatible.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  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
30.1.40 146 7/14/2025
30.1.39 153 7/8/2025
30.1.38 151 7/1/2025
30.1.37 219 6/25/2025
29.2.11 163 6/16/2025
29.2.10 286 6/9/2025
29.2.9 163 6/5/2025
29.2.8 154 6/3/2025
29.2.7 306 5/26/2025
29.2.5 162 5/20/2025
29.2.4 253 5/14/2025
29.1.41 229 5/5/2025
29.1.40 169 4/28/2025
29.1.39 184 4/21/2025
29.1.38 226 4/14/2025
29.1.37 222 4/8/2025
29.1.35 184 4/1/2025
29.1.33 539 3/25/2025
28.2.12 183 3/19/2025
28.2.11 199 3/10/2025
28.2.9 472 3/3/2025
28.2.7 165 2/25/2025
28.2.6 153 2/17/2025
28.2.5 128 2/11/2025
28.2.4 134 2/4/2025
28.2.3 126 1/29/2025
28.1.41 387 1/20/2025
28.1.39 257 1/13/2025
28.1.38 132 1/7/2025
28.1.37 135 12/31/2024
28.1.36 139 12/23/2024
28.1.35 235 12/18/2024
28.1.33 164 12/12/2024
27.2.5 176 12/2/2024
27.2.4 156 11/26/2024
27.2.3 146 11/22/2024
27.2.2 157 11/15/2024
27.1.58 157 11/4/2024
27.1.57 203 10/28/2024
27.1.56 153 10/23/2024
27.1.55 130 10/21/2024
27.1.53 182 10/14/2024
27.1.52 157 10/7/2024
27.1.51 202 9/30/2024
27.1.50 200 9/23/2024
27.1.48 168 9/18/2024
26.2.14 853 9/9/2024
26.2.13 149 9/5/2024
26.2.12 159 9/2/2024
26.2.11 175 8/27/2024
26.2.10 182 8/19/2024
26.2.9 175 8/12/2024
26.2.8 145 8/5/2024
26.2.7 116 7/29/2024
26.2.5 162 7/25/2024
26.2.4 149 7/24/2024
26.1.42 189 7/15/2024
26.1.41 177 7/8/2024
26.1.40 181 7/1/2024
26.1.39 165 6/24/2024
26.1.38 177 6/18/2024
26.1.35 191 6/11/2024
25.2.7 153 6/3/2024
25.2.6 179 5/28/2024
25.2.5 161 5/21/2024
25.2.4 168 5/14/2024
25.2.3 176 5/8/2024
25.1.42 196 4/29/2024
25.1.41 190 4/23/2024
25.1.40 196 4/15/2024
25.1.39 181 4/8/2024
25.1.38 196 4/1/2024
25.1.37 186 3/26/2024
25.1.35 242 3/15/2024
24.2.9 1,296 3/4/2024
24.2.8 183 2/26/2024
24.2.7 197 2/19/2024
24.2.6 187 2/14/2024
24.2.5 176 2/12/2024
24.2.4 188 2/5/2024
24.2.3 210 1/31/2024
24.1.47 169 1/22/2024
24.1.46 199 1/16/2024
24.1.45 202 1/8/2024
24.1.44 186 1/2/2024
24.1.43 201 12/27/2023
24.1.41 313 12/18/2023
23.2.7 233 12/6/2023
23.2.6 210 11/28/2023
23.2.5 197 11/23/2023
23.2.4 208 11/20/2023
23.1.44 225 11/6/2023
23.1.43 209 10/30/2023
23.1.42 219 10/23/2023
23.1.41 208 10/16/2023
23.1.40 259 10/10/2023
23.1.39 203 10/4/2023
23.1.38 222 9/26/2023
23.1.36 270 9/15/2023
22.2.12 272 9/5/2023
22.2.11 247 8/28/2023
22.2.10 215 8/22/2023
22.2.9 231 8/14/2023
22.2.8 240 8/7/2023
22.2.7 255 8/2/2023
22.2.5 244 7/27/2023
22.1.39 265 7/18/2023
22.1.38 255 7/11/2023
22.1.37 275 7/3/2023
22.1.36 274 6/28/2023
22.1.34 342 6/21/2023
21.2.10 287 6/12/2023
21.2.9 273 6/6/2023
21.2.8 293 5/30/2023
21.2.6 385 5/22/2023
21.2.5 303 5/15/2023
21.2.4 300 5/9/2023
21.2.3 308 5/3/2023
21.1.41 453 4/19/2023
21.1.39 361 4/10/2023
21.1.38 374 4/3/2023
21.1.37 384 3/29/2023
21.1.35 401 3/23/2023
20.4.0.54 1,170 3/13/2023
20.4.0.53 385 3/7/2023
20.4.0.52 407 2/28/2023
20.4.0.51 403 2/21/2023
20.4.0.50 392 2/14/2023
20.4.0.49 411 2/7/2023
20.4.0.48 460 2/1/2023
20.4.0.44 467 1/18/2023
20.4.0.43 510 1/10/2023
20.4.0.42 506 1/4/2023
20.4.0.41 450 12/29/2022
20.4.0.40 415 12/28/2022
20.4.0.38 461 12/21/2022
20.3.0.61 475 12/12/2022
20.3.0.60 445 12/6/2022
20.3.0.59 492 11/29/2022
20.3.0.58 491 11/21/2022
20.3.0.57 885 11/14/2022
20.3.0.56 839 11/8/2022
20.3.0.52 577 10/27/2022
20.3.0.50 576 10/17/2022
20.3.0.49 584 10/11/2022
20.3.0.48 572 10/5/2022
20.3.0.47 602 9/29/2022
20.2.0.50 599 9/20/2022
20.2.0.49 609 9/13/2022
20.2.0.48 646 9/6/2022
20.2.0.46 573 8/30/2022
20.2.0.45 4,620 8/23/2022
20.2.0.44 633 8/16/2022
20.2.0.43 659 8/8/2022
20.2.0.40 629 7/26/2022
20.2.0.39 601 7/19/2022
20.2.0.38 627 7/12/2022
20.2.0.36 654 6/30/2022
20.1.0.61 628 6/20/2022
20.1.0.60 629 6/14/2022
20.1.0.59 615 6/6/2022
20.1.0.58 621 5/30/2022
20.1.0.57 606 5/23/2022
20.1.0.56 632 5/17/2022
20.1.0.55 588 5/12/2022
20.1.0.52 675 5/2/2022
20.1.0.51 1,228 4/26/2022
20.1.0.50 649 4/19/2022
20.1.0.48 715 4/12/2022
20.1.0.47 644 4/4/2022
19.4.0.56 667 3/14/2022
19.4.0.55 662 3/8/2022
19.4.0.54 679 2/28/2022
19.4.0.53 677 2/21/2022
19.4.0.52 641 2/15/2022
19.4.0.50 699 2/8/2022
19.4.0.48 670 1/31/2022
19.4.0.47 652 1/24/2022
19.4.0.43 669 1/18/2022
19.4.0.42 674 1/10/2022
19.4.0.41 599 1/4/2022
19.4.0.40 475 12/28/2021
19.4.0.38 519 12/17/2021
19.3.0.59 491 12/14/2021
19.3.0.57 584 12/7/2021
19.3.0.56 1,328 11/29/2021
19.3.0.55 506 11/23/2021
19.3.0.54 490 11/17/2021
19.3.0.53 542 11/12/2021
19.3.0.48 526 11/3/2021
19.3.0.47 572 10/26/2021
19.3.0.46 548 10/19/2021
19.3.0.45 574 10/12/2021
19.3.0.44 561 10/5/2021
19.3.0.43 643 9/30/2021
19.2.0.62 681 9/13/2021
19.2.0.60 589 9/7/2021
19.2.0.59 575 8/30/2021
19.2.0.57 559 8/24/2021
19.2.0.56 540 8/17/2021
19.2.0.55 601 8/11/2021
19.2.0.51 998 8/2/2021
19.2.0.49 591 7/26/2021
19.2.0.48 582 7/19/2021
19.2.0.47 593 7/13/2021
19.2.0.46 596 7/6/2021
19.2.0.44 645 6/30/2021
19.1.0.69 641 6/14/2021
19.1.0.67 643 6/7/2021
19.1.0.66 818 5/31/2021
19.1.0.65 622 5/24/2021
19.1.0.64 712 5/19/2021
19.1.0.63 598 5/13/2021
19.1.0.59 816 5/3/2021
19.1.0.58 596 4/26/2021
19.1.0.57 684 4/20/2021
19.1.0.56 587 4/12/2021
19.1.0.55 626 4/6/2021
19.1.0.54 2,150 3/30/2021
18.4.0.49 598 3/22/2021
18.4.0.48 619 3/16/2021
18.4.0.47 619 3/9/2021
18.4.0.46 611 3/2/2021
18.4.0.44 630 2/23/2021
18.4.0.43 608 2/15/2021
18.4.0.42 619 2/9/2021
18.4.0.41 612 2/2/2021
18.4.0.39 669 1/28/2021
18.4.0.35 758 1/19/2021
18.4.0.34 648 1/12/2021
18.4.0.33 626 1/4/2021
18.4.0.32 609 12/30/2020
18.4.0.31 636 12/22/2020
18.4.0.30 740 12/17/2020
18.3.0.53 670 12/8/2020
18.3.0.52 681 11/30/2020
18.3.0.51 683 11/23/2020
18.3.0.50 673 11/17/2020
18.3.0.48 633 11/10/2020
18.3.0.47 834 11/5/2020
18.3.0.44 732 10/27/2020
18.3.0.42 738 10/20/2020
18.3.0.40 731 10/12/2020
18.3.0.38 716 10/7/2020
18.3.0.35 692 10/1/2020
18.2.0.59 701 9/22/2020
18.2.0.58 661 9/15/2020
18.2.0.57 668 9/8/2020
18.2.0.56 687 9/1/2020
18.2.0.55 679 8/24/2020
18.2.0.54 698 8/18/2020
18.2.0.48 795 8/4/2020
18.2.0.47 754 7/28/2020
18.2.0.46 749 7/21/2020
18.2.0.45 716 7/14/2020
18.2.0.44 1,212 7/6/2020
18.1.0.59 746 6/23/2020
18.1.0.57 800 6/15/2020
18.1.0.56 749 6/9/2020
18.1.0.55 720 6/2/2020
18.1.0.54 765 5/26/2020
18.1.0.53 741 5/19/2020
18.1.0.52 743 5/13/2020
18.1.0.48 747 5/5/2020
18.1.0.46 768 4/28/2020
18.1.0.45 748 4/20/2020
18.1.0.44 909 4/14/2020
18.1.0.43 752 4/7/2020
18.1.0.42 787 4/1/2020
18.1.0.36-beta 520 3/19/2020
17.4.0.55 928 3/10/2020
17.4.0.53 762 3/3/2020
17.4.0.51 772 2/25/2020
17.4.0.50 795 2/18/2020
17.4.0.49 784 2/11/2020
17.4.0.47 1,579 2/5/2020
17.4.0.46 773 1/30/2020
17.4.0.44 847 1/21/2020
17.4.0.43 781 1/14/2020
17.4.0.41 764 1/7/2020
17.4.0.40 776 12/24/2019
17.4.0.39 791 12/17/2019
17.3.0.34 771 12/10/2019
17.3.0.33 883 12/4/2019
17.3.0.30 759 12/3/2019
17.3.0.29 769 11/26/2019
17.3.0.28 772 11/18/2019
17.3.0.27 920 11/12/2019
17.3.0.26 812 11/5/2019
17.3.0.21 808 10/29/2019
17.3.0.19 809 10/22/2019
17.3.0.17 839 10/15/2019
17.3.0.14 862 10/3/2019
17.3.0.9-beta 510 9/20/2019
17.2.0.51 862 9/10/2019
17.2.0.49 810 9/3/2019
17.2.0.47 835 8/27/2019
17.2.0.46 818 8/22/2019
17.2.0.41 855 8/13/2019
17.2.0.40 860 8/6/2019
17.2.0.39 830 7/30/2019
17.2.0.36 825 7/23/2019
17.2.0.35 856 7/17/2019
17.2.0.34 987 7/11/2019
17.2.0.28-beta 509 6/27/2019
17.1.0.53 846 6/25/2019
17.1.0.52 902 6/18/2019
17.1.0.51 884 6/11/2019
17.1.0.50 858 6/4/2019
17.1.0.49 856 5/28/2019
17.1.0.48 884 5/21/2019
17.1.0.47 875 5/14/2019
17.1.0.44 849 5/7/2019
17.1.0.43 847 4/30/2019
17.1.0.42 977 4/23/2019
17.1.0.41 838 4/16/2019
17.1.0.40 865 4/9/2019
17.1.0.38 942 3/29/2019
17.1.0.32-beta 570 3/13/2019
16.4.0.54 1,022 2/19/2019
16.4.0.53 988 2/13/2019
16.4.0.52 996 2/5/2019
16.4.0.48 956 1/22/2019
16.4.0.47 932 1/16/2019
16.4.0.46 970 1/8/2019
16.4.0.44 970 12/24/2018
16.4.0.42 1,012 12/17/2018
16.4.0.40-beta 683 12/10/2018
16.3.0.36 1,028 11/27/2018
16.3.0.35-beta 707 11/23/2018
16.3.0.29 1,246 10/30/2018
16.3.0.21 1,178 9/21/2018