Syncfusion.OfficeChartToImageConverter.WinForms 27.2.4

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 27.2.4
                    
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.WinForms -Version 27.2.4
                    
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="27.2.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.OfficeChartToImageConverter.WinForms" Version="27.2.4" />
                    
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 27.2.4
                    
#r "nuget: Syncfusion.OfficeChartToImageConverter.WinForms, 27.2.4"
                    
#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.
#addin nuget:?package=Syncfusion.OfficeChartToImageConverter.WinForms&version=27.2.4
                    
Install Syncfusion.OfficeChartToImageConverter.WinForms as a Cake Addin
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.WinForms&version=27.2.4
                    
Install Syncfusion.OfficeChartToImageConverter.WinForms 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 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 net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  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
29.2.11 134 6/16/2025
29.2.10 269 6/9/2025
29.2.9 145 6/5/2025
29.2.8 143 6/3/2025
29.2.7 223 5/26/2025
29.2.5 148 5/20/2025
29.2.4 241 5/14/2025
29.1.41 215 5/5/2025
29.1.40 162 4/28/2025
29.1.39 172 4/21/2025
29.1.38 214 4/14/2025
29.1.37 206 4/8/2025
29.1.35 173 4/1/2025
29.1.33 527 3/25/2025
28.2.12 172 3/19/2025
28.2.11 183 3/10/2025
28.2.9 458 3/3/2025
28.2.7 149 2/25/2025
28.2.6 139 2/17/2025
28.2.5 122 2/11/2025
28.2.4 127 2/4/2025
28.2.3 113 1/29/2025
28.1.41 370 1/20/2025
28.1.39 240 1/13/2025
28.1.38 125 1/7/2025
28.1.37 124 12/31/2024
28.1.36 122 12/23/2024
28.1.35 227 12/18/2024
28.1.33 154 12/12/2024
27.2.5 164 12/2/2024
27.2.4 140 11/26/2024
27.2.3 135 11/22/2024
27.2.2 146 11/15/2024
27.1.58 145 11/4/2024
27.1.57 190 10/28/2024
27.1.56 139 10/23/2024
27.1.55 120 10/21/2024
27.1.53 172 10/14/2024
27.1.52 142 10/7/2024
27.1.51 185 9/30/2024
27.1.50 186 9/23/2024
27.1.48 157 9/18/2024
26.2.14 798 9/9/2024
26.2.13 141 9/5/2024
26.2.12 147 9/2/2024
26.2.11 161 8/27/2024
26.2.10 165 8/19/2024
26.2.9 166 8/12/2024
26.2.8 136 8/5/2024
26.2.7 102 7/29/2024
26.2.5 146 7/25/2024
26.2.4 140 7/24/2024
26.1.42 176 7/15/2024
26.1.41 161 7/8/2024
26.1.40 168 7/1/2024
26.1.39 157 6/24/2024
26.1.38 161 6/18/2024
26.1.35 179 6/11/2024
25.2.7 145 6/3/2024
25.2.6 170 5/28/2024
25.2.5 154 5/21/2024
25.2.4 157 5/14/2024
25.2.3 170 5/8/2024
25.1.42 185 4/29/2024
25.1.41 175 4/23/2024
25.1.40 186 4/15/2024
25.1.39 170 4/8/2024
25.1.38 187 4/1/2024
25.1.37 173 3/26/2024
25.1.35 232 3/15/2024
24.2.9 1,270 3/4/2024
24.2.8 175 2/26/2024
24.2.7 183 2/19/2024
24.2.6 175 2/14/2024
24.2.5 164 2/12/2024
24.2.4 179 2/5/2024
24.2.3 197 1/31/2024
24.1.47 164 1/22/2024
24.1.46 184 1/16/2024
24.1.45 196 1/8/2024
24.1.44 178 1/2/2024
24.1.43 190 12/27/2023
24.1.41 303 12/18/2023
23.2.7 222 12/6/2023
23.2.6 199 11/28/2023
23.2.5 185 11/23/2023
23.2.4 194 11/20/2023
23.1.44 217 11/6/2023
23.1.43 203 10/30/2023
23.1.42 207 10/23/2023
23.1.41 190 10/16/2023
23.1.40 242 10/10/2023
23.1.39 190 10/4/2023
23.1.38 205 9/26/2023
23.1.36 254 9/15/2023
22.2.12 258 9/5/2023
22.2.11 233 8/28/2023
22.2.10 198 8/22/2023
22.2.9 213 8/14/2023
22.2.8 218 8/7/2023
22.2.7 240 8/2/2023
22.2.5 230 7/27/2023
22.1.39 248 7/18/2023
22.1.38 233 7/11/2023
22.1.37 258 7/3/2023
22.1.36 254 6/28/2023
22.1.34 324 6/21/2023
21.2.10 272 6/12/2023
21.2.9 252 6/6/2023
21.2.8 280 5/30/2023
21.2.6 370 5/22/2023
21.2.5 283 5/15/2023
21.2.4 283 5/9/2023
21.2.3 285 5/3/2023
21.1.41 433 4/19/2023
21.1.39 340 4/10/2023
21.1.38 362 4/3/2023
21.1.37 363 3/29/2023
21.1.35 382 3/23/2023
20.4.0.54 1,151 3/13/2023
20.4.0.53 371 3/7/2023
20.4.0.52 389 2/28/2023
20.4.0.51 390 2/21/2023
20.4.0.50 374 2/14/2023
20.4.0.49 395 2/7/2023
20.4.0.48 438 2/1/2023
20.4.0.44 448 1/18/2023
20.4.0.43 495 1/10/2023
20.4.0.42 489 1/4/2023
20.4.0.41 434 12/29/2022
20.4.0.40 400 12/28/2022
20.4.0.38 443 12/21/2022
20.3.0.61 456 12/12/2022
20.3.0.60 426 12/6/2022
20.3.0.59 476 11/29/2022
20.3.0.58 474 11/21/2022
20.3.0.57 844 11/14/2022
20.3.0.56 805 11/8/2022
20.3.0.52 551 10/27/2022
20.3.0.50 556 10/17/2022
20.3.0.49 568 10/11/2022
20.3.0.48 552 10/5/2022
20.3.0.47 582 9/29/2022
20.2.0.50 572 9/20/2022
20.2.0.49 594 9/13/2022
20.2.0.48 624 9/6/2022
20.2.0.46 555 8/30/2022
20.2.0.45 4,536 8/23/2022
20.2.0.44 615 8/16/2022
20.2.0.43 639 8/8/2022
20.2.0.40 611 7/26/2022
20.2.0.39 583 7/19/2022
20.2.0.38 609 7/12/2022
20.2.0.36 637 6/30/2022
20.1.0.61 613 6/20/2022
20.1.0.60 607 6/14/2022
20.1.0.59 596 6/6/2022
20.1.0.58 605 5/30/2022
20.1.0.57 582 5/23/2022
20.1.0.56 610 5/17/2022
20.1.0.55 573 5/12/2022
20.1.0.52 657 5/2/2022
20.1.0.51 1,204 4/26/2022
20.1.0.50 630 4/19/2022
20.1.0.48 693 4/12/2022
20.1.0.47 623 4/4/2022
19.4.0.56 651 3/14/2022
19.4.0.55 644 3/8/2022
19.4.0.54 656 2/28/2022
19.4.0.53 657 2/21/2022
19.4.0.52 618 2/15/2022
19.4.0.50 680 2/8/2022
19.4.0.48 648 1/31/2022
19.4.0.47 636 1/24/2022
19.4.0.43 651 1/18/2022
19.4.0.42 654 1/10/2022
19.4.0.41 572 1/4/2022
19.4.0.40 450 12/28/2021
19.4.0.38 497 12/17/2021
19.3.0.59 474 12/14/2021
19.3.0.57 561 12/7/2021
19.3.0.56 1,301 11/29/2021
19.3.0.55 482 11/23/2021
19.3.0.54 473 11/17/2021
19.3.0.53 517 11/12/2021
19.3.0.48 506 11/3/2021
19.3.0.47 546 10/26/2021
19.3.0.46 525 10/19/2021
19.3.0.45 553 10/12/2021
19.3.0.44 540 10/5/2021
19.3.0.43 624 9/30/2021
19.2.0.62 661 9/13/2021
19.2.0.60 572 9/7/2021
19.2.0.59 556 8/30/2021
19.2.0.57 536 8/24/2021
19.2.0.56 519 8/17/2021
19.2.0.55 580 8/11/2021
19.2.0.51 978 8/2/2021
19.2.0.49 572 7/26/2021
19.2.0.48 561 7/19/2021
19.2.0.47 573 7/13/2021
19.2.0.46 580 7/6/2021
19.2.0.44 618 6/30/2021
19.1.0.69 617 6/14/2021
19.1.0.67 622 6/7/2021
19.1.0.66 794 5/31/2021
19.1.0.65 600 5/24/2021
19.1.0.64 692 5/19/2021
19.1.0.63 579 5/13/2021
19.1.0.59 790 5/3/2021
19.1.0.58 575 4/26/2021
19.1.0.57 664 4/20/2021
19.1.0.56 565 4/12/2021
19.1.0.55 601 4/6/2021
19.1.0.54 2,114 3/30/2021
18.4.0.49 571 3/22/2021
18.4.0.48 602 3/16/2021
18.4.0.47 592 3/9/2021
18.4.0.46 591 3/2/2021
18.4.0.44 606 2/23/2021
18.4.0.43 581 2/15/2021
18.4.0.42 598 2/9/2021
18.4.0.41 583 2/2/2021
18.4.0.39 648 1/28/2021
18.4.0.35 735 1/19/2021
18.4.0.34 629 1/12/2021
18.4.0.33 606 1/4/2021
18.4.0.32 584 12/30/2020
18.4.0.31 617 12/22/2020
18.4.0.30 716 12/17/2020
18.3.0.53 641 12/8/2020
18.3.0.52 656 11/30/2020
18.3.0.51 659 11/23/2020
18.3.0.50 652 11/17/2020
18.3.0.48 604 11/10/2020
18.3.0.47 804 11/5/2020
18.3.0.44 704 10/27/2020
18.3.0.42 712 10/20/2020
18.3.0.40 706 10/12/2020
18.3.0.38 691 10/7/2020
18.3.0.35 666 10/1/2020
18.2.0.59 680 9/22/2020
18.2.0.58 641 9/15/2020
18.2.0.57 645 9/8/2020
18.2.0.56 667 9/1/2020
18.2.0.55 656 8/24/2020
18.2.0.54 673 8/18/2020
18.2.0.48 769 8/4/2020
18.2.0.47 730 7/28/2020
18.2.0.46 724 7/21/2020
18.2.0.45 691 7/14/2020
18.2.0.44 1,187 7/6/2020
18.1.0.59 723 6/23/2020
18.1.0.57 774 6/15/2020
18.1.0.56 728 6/9/2020
18.1.0.55 698 6/2/2020
18.1.0.54 739 5/26/2020
18.1.0.53 721 5/19/2020
18.1.0.52 716 5/13/2020
18.1.0.48 727 5/5/2020
18.1.0.46 746 4/28/2020
18.1.0.45 720 4/20/2020
18.1.0.44 885 4/14/2020
18.1.0.43 733 4/7/2020
18.1.0.42 766 4/1/2020
18.1.0.36-beta 496 3/19/2020
17.4.0.55 892 3/10/2020
17.4.0.53 740 3/3/2020
17.4.0.51 747 2/25/2020
17.4.0.50 771 2/18/2020
17.4.0.49 761 2/11/2020
17.4.0.47 1,555 2/5/2020
17.4.0.46 747 1/30/2020
17.4.0.44 826 1/21/2020
17.4.0.43 761 1/14/2020
17.4.0.41 741 1/7/2020
17.4.0.40 750 12/24/2019
17.4.0.39 766 12/17/2019
17.3.0.34 749 12/10/2019
17.3.0.33 858 12/4/2019
17.3.0.30 737 12/3/2019
17.3.0.29 744 11/26/2019
17.3.0.28 748 11/18/2019
17.3.0.27 895 11/12/2019
17.3.0.26 784 11/5/2019
17.3.0.21 782 10/29/2019
17.3.0.19 788 10/22/2019
17.3.0.17 817 10/15/2019
17.3.0.14 838 10/3/2019
17.3.0.9-beta 490 9/20/2019
17.2.0.51 841 9/10/2019
17.2.0.49 788 9/3/2019
17.2.0.47 816 8/27/2019
17.2.0.46 785 8/22/2019
17.2.0.41 830 8/13/2019
17.2.0.40 838 8/6/2019
17.2.0.39 805 7/30/2019
17.2.0.36 799 7/23/2019
17.2.0.35 832 7/17/2019
17.2.0.34 963 7/11/2019
17.2.0.28-beta 486 6/27/2019
17.1.0.53 825 6/25/2019
17.1.0.52 877 6/18/2019
17.1.0.51 865 6/11/2019
17.1.0.50 835 6/4/2019
17.1.0.49 828 5/28/2019
17.1.0.48 865 5/21/2019
17.1.0.47 856 5/14/2019
17.1.0.44 828 5/7/2019
17.1.0.43 827 4/30/2019
17.1.0.42 951 4/23/2019
17.1.0.41 816 4/16/2019
17.1.0.40 841 4/9/2019
17.1.0.38 912 3/29/2019
17.1.0.32-beta 547 3/13/2019
16.4.0.54 998 2/19/2019
16.4.0.53 961 2/13/2019
16.4.0.52 973 2/5/2019
16.4.0.48 931 1/22/2019
16.4.0.47 904 1/16/2019
16.4.0.46 944 1/8/2019
16.4.0.44 948 12/24/2018
16.4.0.42 989 12/17/2018
16.4.0.40-beta 653 12/10/2018
16.3.0.36 1,003 11/27/2018
16.3.0.35-beta 684 11/23/2018
16.3.0.29 1,217 10/30/2018
16.3.0.21 1,152 9/21/2018