Syncfusion.OfficeChartToImageConverter.WPF 25.2.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.OfficeChartToImageConverter.WPF --version 25.2.4
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.WPF -Version 25.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.WPF" Version="25.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.OfficeChartToImageConverter.WPF --version 25.2.4
#r "nuget: Syncfusion.OfficeChartToImageConverter.WPF, 25.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.
// Install Syncfusion.OfficeChartToImageConverter.WPF as a Cake Addin
#addin nuget:?package=Syncfusion.OfficeChartToImageConverter.WPF&version=25.2.4

// Install Syncfusion.OfficeChartToImageConverter.WPF as a Cake Tool
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.WPF&version=25.2.4

Syncfusion WPF Office Chart To Image Converter

The Syncfusion WPF Office Chart To Image Converter is a .NET helper class library that allows you to convert the PowerPoint and Word charts to PDF or images in any WPF application without Microsoft Office dependencies.

WPF Office Chart To Image Converter

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

Key Features

System Requirements

Getting started

You can fetch the Syncfusion WPF Office Chart to Image converter library NuGet by simply running the command Install-Package Syncfusion.OfficeChartToImageConverter.Wpf 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, 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. 
.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 (3)

Showing the top 3 NuGet packages that depend on Syncfusion.OfficeChartToImageConverter.WPF:

Package Downloads
BusAppCore.Prism.Wpf.DevForce

Wrapper library for Prism.Wpf Library providing additional application services not available in Prism

BusAppCore.Prism.Wpf.EF

Wrapper library for Prism.Wpf Library providing additional application services not available in Prism

BusAppCore.Prism.Wpf.EFCore

Wrapper library for Prism.Wpf Library providing additional application services not available in Prism

GitHub repositories (1)

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

Repository Stars
QL-Win/QuickLook.Plugin.OfficeViewer
Word, Excel, and PowerPoint plugin for QuickLook.
Version Downloads Last updated
26.1.35 75 6/11/2024
25.2.7 97 6/3/2024
25.2.6 111 5/28/2024
25.2.5 106 5/21/2024
25.2.4 125 5/14/2024
25.2.3 130 5/8/2024
25.1.42 119 4/29/2024
25.1.41 189 4/23/2024
25.1.40 172 4/15/2024
25.1.39 138 4/8/2024
25.1.38 184 4/1/2024
25.1.37 146 3/26/2024
25.1.35 182 3/15/2024
24.2.9 319 3/4/2024
24.2.8 290 2/26/2024
24.2.7 303 2/19/2024
24.2.6 308 2/14/2024
24.2.5 285 2/12/2024
24.2.4 282 2/5/2024
24.2.3 249 1/31/2024
24.1.47 315 1/22/2024
24.1.46 334 1/16/2024
24.1.45 426 1/8/2024
24.1.44 386 1/2/2024
24.1.43 335 12/27/2023
24.1.41 479 12/18/2023
23.2.7 565 12/6/2023
23.2.6 454 11/28/2023
23.2.5 479 11/23/2023
23.2.4 452 11/20/2023
23.1.44 485 11/6/2023
23.1.43 451 10/30/2023
23.1.42 526 10/23/2023
23.1.41 507 10/16/2023
23.1.40 2,264 10/10/2023
23.1.39 528 10/4/2023
23.1.38 576 9/26/2023
23.1.36 694 9/15/2023
22.2.12 654 9/5/2023
22.2.11 620 8/28/2023
22.2.10 632 8/22/2023
22.2.9 666 8/14/2023
22.2.8 656 8/7/2023
22.2.7 652 8/2/2023
22.2.5 714 7/27/2023
22.1.39 802 7/18/2023
22.1.38 908 7/11/2023
22.1.37 750 7/3/2023
22.1.36 790 6/28/2023
22.1.34 734 6/21/2023
21.2.10 770 6/12/2023
21.2.9 750 6/6/2023
21.2.8 769 5/30/2023
21.2.6 768 5/22/2023
21.2.5 685 5/15/2023
21.2.4 828 5/9/2023
21.2.3 825 5/3/2023
21.1.41 857 4/19/2023
21.1.39 900 4/10/2023
21.1.38 944 4/3/2023
21.1.37 800 3/29/2023
21.1.35 817 3/23/2023
20.4.0.54 918 3/13/2023
20.4.0.53 1,833 3/7/2023
20.4.0.52 855 2/28/2023
20.4.0.51 895 2/21/2023
20.4.0.50 798 2/14/2023
20.4.0.49 832 2/7/2023
20.4.0.48 1,106 2/1/2023
20.4.0.44 882 1/18/2023
20.4.0.43 926 1/10/2023
20.4.0.42 992 1/4/2023
20.4.0.41 887 12/29/2022
20.4.0.40 799 12/28/2022
20.4.0.38 866 12/21/2022
20.3.0.61 859 12/12/2022
20.3.0.60 798 12/6/2022
20.3.0.59 877 11/29/2022
20.3.0.58 916 11/21/2022
20.3.0.57 888 11/15/2022
20.3.0.56 862 11/8/2022
20.3.0.52 937 10/27/2022
20.3.0.50 972 10/17/2022
20.3.0.49 953 10/11/2022
20.3.0.48 916 10/5/2022
20.3.0.47 1,039 9/29/2022
20.2.0.50 1,010 9/20/2022
20.2.0.49 984 9/13/2022
20.2.0.48 940 9/6/2022
20.2.0.46 966 8/30/2022
20.2.0.45 1,004 8/23/2022
20.2.0.44 1,022 8/16/2022
20.2.0.43 1,095 8/8/2022
20.2.0.40 993 7/26/2022
20.2.0.39 1,008 7/19/2022
20.2.0.38 989 7/12/2022
20.2.0.36 1,107 6/30/2022
20.1.0.61 1,078 6/20/2022
20.1.0.60 1,033 6/14/2022
20.1.0.59 1,013 6/6/2022
20.1.0.58 1,423 5/30/2022
20.1.0.57 1,043 5/23/2022
20.1.0.56 1,308 5/17/2022
20.1.0.55 1,070 5/12/2022
20.1.0.52 1,173 5/2/2022
20.1.0.51 1,090 4/26/2022
20.1.0.50 1,059 4/19/2022
20.1.0.48 1,087 4/12/2022
20.1.0.47 1,061 4/4/2022
19.4.0.56 1,850 3/14/2022
19.4.0.55 1,057 3/8/2022
19.4.0.54 1,125 2/28/2022
19.4.0.53 1,008 2/22/2022
19.4.0.52 1,111 2/15/2022
19.4.0.50 997 2/8/2022
19.4.0.48 1,056 1/31/2022
19.4.0.47 1,056 1/24/2022
19.4.0.43 1,007 1/18/2022
19.4.0.42 3,876 1/10/2022
19.4.0.41 867 1/4/2022
19.4.0.40 870 12/28/2021
19.4.0.38 937 12/17/2021
19.3.0.59 1,050 12/14/2021
19.3.0.57 1,202 12/7/2021
19.3.0.56 4,680 11/29/2021
19.3.0.55 1,650 11/23/2021
19.3.0.54 912 11/17/2021
19.3.0.53 1,005 11/12/2021
19.3.0.48 1,109 11/2/2021
19.3.0.47 972 10/26/2021
19.3.0.46 996 10/19/2021
19.3.0.45 925 10/12/2021
19.3.0.44 930 10/5/2021
19.3.0.43 998 9/30/2021
19.2.0.62 1,071 9/13/2021
19.2.0.60 1,076 9/7/2021
19.2.0.59 2,106 8/30/2021
19.2.0.57 1,074 8/24/2021
19.2.0.56 1,000 8/17/2021
19.2.0.55 1,056 8/11/2021
19.2.0.51 1,076 8/2/2021
19.2.0.49 1,084 7/26/2021
19.2.0.48 1,086 7/19/2021
19.2.0.47 1,036 7/13/2021
19.2.0.46 1,048 7/6/2021
19.2.0.44 1,412 6/30/2021
19.1.0.69 1,124 6/14/2021
19.1.0.67 1,063 6/7/2021
19.1.0.66 1,036 5/31/2021
19.1.0.65 1,010 5/24/2021
19.1.0.64 1,088 5/19/2021
19.1.0.63 1,035 5/13/2021
19.1.0.59 1,007 5/3/2021
19.1.0.58 971 4/26/2021
19.1.0.57 1,063 4/20/2021
19.1.0.56 972 4/12/2021
19.1.0.55 1,034 4/6/2021
19.1.0.54 1,153 3/30/2021
18.4.0.49 1,098 3/22/2021
18.4.0.48 1,060 3/16/2021
18.4.0.47 1,072 3/9/2021
18.4.0.46 1,159 3/2/2021
18.4.0.44 1,832 2/23/2021
18.4.0.43 1,069 2/15/2021
18.4.0.42 1,067 2/9/2021
18.4.0.41 1,146 2/2/2021
18.4.0.39 1,068 1/28/2021
18.4.0.35 1,060 1/19/2021
18.4.0.34 989 1/12/2021
18.4.0.33 1,057 1/4/2021
18.4.0.32 1,080 12/30/2020
18.4.0.31 1,041 12/22/2020
18.4.0.30 1,144 12/17/2020
18.3.0.53 1,041 12/8/2020
18.3.0.52 1,140 11/30/2020
18.3.0.51 1,042 11/23/2020
18.3.0.50 1,046 11/17/2020
18.3.0.48 1,035 11/10/2020
18.3.0.47 1,132 11/5/2020
18.3.0.44 1,132 10/27/2020
18.3.0.42 1,095 10/20/2020
18.3.0.40 1,154 10/12/2020
18.3.0.38 1,161 10/7/2020
18.3.0.35 1,596 10/1/2020
18.2.0.59 1,245 9/22/2020
18.2.0.58 1,229 9/15/2020
18.2.0.57 1,148 9/8/2020
18.2.0.56 1,174 9/1/2020
18.2.0.55 1,099 8/25/2020
18.2.0.54 1,179 8/18/2020
18.2.0.48 1,093 8/4/2020
18.2.0.47 1,233 7/28/2020
18.2.0.46 1,175 7/21/2020
18.2.0.45 1,089 7/14/2020
18.2.0.44 1,695 7/6/2020
18.1.0.59 1,222 6/23/2020
18.1.0.57 1,153 6/15/2020
18.1.0.56 1,250 6/9/2020
18.1.0.55 1,711 6/2/2020
18.1.0.54 1,135 5/26/2020
18.1.0.53 13,125 5/19/2020
18.1.0.52 1,408 5/13/2020
18.1.0.48 1,146 5/5/2020
18.1.0.46 1,113 4/28/2020
18.1.0.45 1,138 4/21/2020
18.1.0.44 1,122 4/14/2020
18.1.0.43 1,188 4/7/2020
18.1.0.42 1,214 4/1/2020
18.1.0.36-beta 953 3/19/2020
17.4.0.55 1,227 3/10/2020
17.4.0.53 1,153 3/3/2020
17.4.0.51 1,106 2/25/2020
17.4.0.50 1,142 2/18/2020
17.4.0.49 1,122 2/11/2020
17.4.0.47 1,151 2/5/2020
17.4.0.46 1,131 1/30/2020
17.4.0.44 1,186 1/21/2020
17.4.0.43 1,176 1/14/2020
17.4.0.41 1,218 1/7/2020
17.4.0.40 1,208 12/24/2019
17.4.0.39 1,207 12/17/2019
17.3.0.34 1,204 12/10/2019
17.3.0.33 1,247 12/4/2019
17.3.0.30 1,214 12/3/2019
17.3.0.29 1,152 11/26/2019
17.3.0.28 1,156 11/18/2019
17.3.0.27 1,218 11/12/2019
17.3.0.26 1,541 11/5/2019
17.3.0.21 1,224 10/29/2019
17.3.0.19 1,203 10/22/2019
17.3.0.17 1,253 10/15/2019
17.3.0.14 1,230 10/3/2019
17.3.0.9-beta 902 9/20/2019
17.2.0.51 1,550 9/10/2019
17.2.0.49 1,794 9/3/2019
17.2.0.47 1,228 8/27/2019
17.2.0.46 1,248 8/22/2019
17.2.0.41 1,185 8/13/2019
17.2.0.40 1,282 8/6/2019
17.2.0.39 1,259 7/30/2019
17.2.0.36 1,279 7/23/2019
17.2.0.35 1,257 7/17/2019
17.2.0.34 1,612 7/11/2019
17.2.0.28-beta 967 6/27/2019
17.1.0.53 15,768 6/25/2019
17.1.0.52 1,309 6/18/2019
17.1.0.51 1,273 6/11/2019
17.1.0.50 1,319 6/4/2019
17.1.0.49 1,293 5/28/2019
17.1.0.48 1,315 5/21/2019
17.1.0.47 1,300 5/14/2019
17.1.0.44 1,359 5/7/2019
17.1.0.43 1,279 4/30/2019
17.1.0.42 1,346 4/23/2019
17.1.0.41 1,277 4/16/2019
17.1.0.40 1,260 4/9/2019
17.1.0.38 1,426 3/29/2019
17.1.0.32-beta 960 3/13/2019
16.4.0.54 8,398 2/19/2019
16.4.0.53 1,475 2/13/2019
16.4.0.52 5,026 2/5/2019
16.4.0.48 1,431 1/22/2019
16.4.0.42 5,558 12/17/2018
16.3.0.36 1,842 11/27/2018
16.3.0.35-beta 1,073 11/23/2018