Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 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.AspNet.Mvc5 --version 27.2.4                
NuGet\Install-Package Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 -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.AspNet.Mvc5" Version="27.2.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 --version 27.2.4                
#r "nuget: Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5, 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.
// Install Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 as a Cake Addin
#addin nuget:?package=Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5&version=27.2.4

// Install Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 as a Cake Tool
#tool nuget:?package=Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5&version=27.2.4                

Syncfusion ASP.NET MVC Office Chart To Image Converter

The Syncfusion ASP.NET MVC Word 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 ASP.NET MVC application without Microsoft Office dependencies.

ASP.NET MVC Word 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 ASP.NET MVC Office Chart to Image converter library NuGet by simply running the command Install-Package Syncfusion.OfficeChartToImageConverter.AspNet.Mvc5 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 Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
28.2.11 167 3/10/2025
28.2.9 212 3/4/2025
28.2.7 124 2/25/2025
28.2.6 164 2/17/2025
28.2.5 113 2/11/2025
28.2.4 293 2/4/2025
28.2.3 97 1/29/2025
28.1.41 99 1/20/2025
28.1.39 91 1/13/2025
28.1.38 168 1/7/2025
28.1.37 97 12/31/2024
28.1.36 105 12/23/2024
28.1.35 107 12/18/2024
28.1.33 125 12/12/2024
27.2.5 113 12/2/2024
27.2.4 122 11/26/2024
27.2.3 105 11/22/2024
27.2.2 125 11/15/2024
27.1.58 141 11/4/2024
27.1.57 131 10/28/2024
27.1.56 100 10/23/2024
27.1.55 99 10/21/2024
27.1.53 149 10/14/2024
27.1.52 99 10/7/2024
27.1.51 118 9/30/2024
27.1.50 123 9/23/2024
27.1.48 138 9/18/2024
26.2.14 827 9/9/2024
26.2.13 203 9/5/2024
26.2.12 131 9/2/2024
26.2.11 177 8/27/2024
26.2.10 409 8/19/2024
26.2.9 155 8/12/2024
26.2.8 158 8/5/2024
26.2.7 101 7/29/2024
26.2.5 103 7/26/2024
26.2.4 155 7/24/2024
26.1.42 140 7/15/2024
26.1.41 6,318 7/8/2024
26.1.40 852 7/1/2024
26.1.39 165 6/24/2024
26.1.38 134 6/18/2024
26.1.35 136 6/11/2024
25.2.7 141 6/3/2024
25.2.6 139 5/28/2024
25.2.5 239 5/21/2024
25.2.4 165 5/14/2024
25.2.3 2,729 5/8/2024
25.1.42 142 4/29/2024
25.1.41 497 4/23/2024
25.1.40 2,073 4/15/2024
25.1.39 2,264 4/8/2024
25.1.38 347 4/1/2024
25.1.37 160 3/26/2024
25.1.35 321 3/15/2024
24.2.9 226 3/4/2024
24.2.8 179 2/26/2024
24.2.7 164 2/19/2024
24.2.6 144 2/14/2024
24.2.5 152 2/12/2024
24.2.4 149 2/5/2024
24.2.3 145 1/31/2024
24.1.47 141 1/22/2024
24.1.46 151 1/16/2024
24.1.45 182 1/8/2024
24.1.44 139 1/2/2024
24.1.43 144 12/27/2023
24.1.41 2,310 12/18/2023
23.2.7 196 12/6/2023
23.2.6 225 11/28/2023
23.2.5 151 11/23/2023
23.2.4 215 11/20/2023
23.1.44 179 11/6/2023
23.1.43 313 10/30/2023
23.1.42 187 10/23/2023
23.1.41 164 10/16/2023
23.1.40 176 10/10/2023
23.1.39 516 10/4/2023
23.1.38 1,769 9/26/2023
23.1.36 592 9/15/2023
22.2.12 227 9/5/2023
22.2.11 192 8/28/2023
22.2.10 195 8/22/2023
22.2.9 203 8/14/2023
22.2.8 210 8/7/2023
22.2.7 181 8/2/2023
22.2.5 600 7/27/2023
22.1.39 469 7/18/2023
22.1.38 242 7/11/2023
22.1.37 236 7/3/2023
22.1.36 187 6/28/2023
22.1.34 723 6/21/2023
21.2.10 222 6/13/2023
21.2.9 898 6/6/2023
21.2.8 223 5/30/2023
21.2.6 202 5/22/2023
21.2.5 238 5/15/2023
21.2.4 211 5/9/2023
21.2.3 285 5/3/2023
21.1.41 285 4/19/2023
21.1.39 265 4/10/2023
21.1.38 303 4/3/2023
21.1.37 4,655 3/29/2023
21.1.35 346 3/23/2023
20.4.0.54 327 3/13/2023
20.4.0.53 292 3/7/2023
20.4.0.52 339 2/28/2023
20.4.0.51 340 2/21/2023
20.4.0.50 323 2/14/2023
20.4.0.49 439 2/7/2023
20.4.0.48 384 2/1/2023
20.4.0.44 479 1/18/2023
20.4.0.43 409 1/10/2023
20.4.0.42 483 1/4/2023
20.4.0.41 354 12/29/2022
20.4.0.40 365 12/28/2022
20.4.0.38 429 12/21/2022
20.3.0.61 366 12/12/2022
20.3.0.60 379 12/6/2022
20.3.0.59 445 11/29/2022
20.3.0.58 402 11/22/2022
20.3.0.57 413 11/15/2022
20.3.0.56 1,669 11/8/2022
20.3.0.52 511 10/27/2022
20.3.0.50 3,744 10/18/2022
20.3.0.49 493 10/11/2022
20.3.0.48 11,093 10/5/2022
20.3.0.47 1,416 9/29/2022
20.2.0.50 1,153 9/20/2022
20.2.0.49 865 9/13/2022
20.2.0.48 503 9/6/2022
20.2.0.46 520 8/30/2022
20.2.0.45 600 8/23/2022
20.2.0.44 576 8/16/2022
20.2.0.43 591 8/8/2022
20.2.0.40 838 7/26/2022
20.2.0.39 541 7/19/2022
20.2.0.38 520 7/12/2022
20.2.0.36 1,315 6/30/2022
20.1.0.61 1,564 6/20/2022
20.1.0.60 558 6/14/2022
20.1.0.59 643 6/6/2022
20.1.0.58 501 5/31/2022
20.1.0.57 549 5/23/2022
20.1.0.56 562 5/17/2022
20.1.0.55 686 5/12/2022
20.1.0.52 578 5/3/2022
20.1.0.51 1,850 4/26/2022
20.1.0.50 634 4/19/2022
20.1.0.48 578 4/12/2022
20.1.0.47 930 4/4/2022
19.4.0.56 988 3/14/2022
19.4.0.55 1,258 3/8/2022
19.4.0.54 1,139 2/28/2022
19.4.0.53 2,149 2/22/2022
19.4.0.52 577 2/15/2022
19.4.0.50 557 2/8/2022
19.4.0.48 748 1/31/2022
19.4.0.47 545 1/25/2022
19.4.0.43 584 1/18/2022
19.4.0.42 576 1/11/2022
19.4.0.41 401 1/4/2022
19.4.0.40 630 12/28/2021
19.4.0.38 451 12/17/2021
19.3.0.59 451 12/14/2021
19.3.0.57 1,163 12/7/2021
19.3.0.56 1,039 11/29/2021
19.3.0.55 407 11/23/2021
19.3.0.54 418 11/17/2021
19.3.0.53 460 11/12/2021
19.3.0.48 459 11/2/2021
19.3.0.47 487 10/26/2021
19.3.0.46 492 10/19/2021
19.3.0.45 461 10/12/2021
19.3.0.44 476 10/5/2021
19.3.0.43 2,963 9/30/2021
19.2.0.62 658 9/13/2021
19.2.0.60 492 9/7/2021
19.2.0.59 504 8/30/2021
19.2.0.57 469 8/24/2021
19.2.0.56 1,168 8/17/2021
19.2.0.55 527 8/11/2021
19.2.0.51 518 8/2/2021
19.2.0.49 480 7/26/2021
19.2.0.48 471 7/19/2021
19.2.0.47 1,099 7/13/2021
19.2.0.46 507 7/6/2021
19.2.0.44 606 6/30/2021
19.1.0.69 703 6/14/2021
19.1.0.67 601 6/7/2021
19.1.0.66 532 5/31/2021
19.1.0.65 504 5/24/2021
19.1.0.64 497 5/19/2021
19.1.0.63 4,425 5/13/2021
19.1.0.59 525 5/3/2021
19.1.0.58 546 4/26/2021
19.1.0.57 523 4/20/2021
19.1.0.56 477 4/13/2021
19.1.0.55 504 4/6/2021
19.1.0.54 587 3/30/2021
18.4.0.49 633 3/22/2021
18.4.0.48 1,077 3/16/2021
18.4.0.47 506 3/9/2021
18.4.0.46 490 3/2/2021
18.4.0.44 537 2/23/2021
18.4.0.43 540 2/15/2021
18.4.0.42 503 2/9/2021
18.4.0.41 523 2/2/2021
18.4.0.39 522 1/28/2021
18.4.0.35 553 1/19/2021
18.4.0.34 515 1/12/2021
18.4.0.33 679 1/4/2021
18.4.0.32 514 12/30/2020
18.4.0.31 568 12/22/2020
18.4.0.30 729 12/17/2020
18.3.0.53 584 12/8/2020
18.3.0.52 540 11/30/2020
18.3.0.51 573 11/23/2020
18.3.0.50 614 11/17/2020
18.3.0.48 585 11/10/2020
18.3.0.47 599 11/5/2020
18.3.0.44 611 10/27/2020
18.3.0.42 650 10/20/2020
18.3.0.40 628 10/12/2020
18.3.0.38 610 10/7/2020
18.3.0.35 687 10/1/2020
18.2.0.59 596 9/22/2020
18.2.0.58 633 9/15/2020
18.2.0.57 630 9/8/2020
18.2.0.56 619 9/1/2020
18.2.0.55 773 8/25/2020
18.2.0.54 576 8/18/2020
18.2.0.48 625 8/4/2020
18.2.0.47 694 7/28/2020
18.2.0.46 627 7/21/2020
18.2.0.45 648 7/14/2020
18.2.0.44 1,660 7/6/2020
18.1.0.59 1,301 6/23/2020
18.1.0.57 634 6/16/2020
18.1.0.56 967 6/9/2020
18.1.0.55 643 6/2/2020
18.1.0.54 702 5/27/2020
18.1.0.53 670 5/19/2020
18.1.0.52 814 5/13/2020
18.1.0.48 678 5/5/2020
18.1.0.46 676 4/28/2020
18.1.0.45 648 4/21/2020
18.1.0.44 717 4/14/2020
18.1.0.43 3,753 4/7/2020
18.1.0.42 753 4/1/2020
18.1.0.36-beta 462 3/19/2020
17.4.0.55 1,359 3/10/2020
17.4.0.53 647 3/3/2020
17.4.0.51 666 2/25/2020
17.4.0.50 706 2/18/2020
17.4.0.49 683 2/11/2020
17.4.0.47 643 2/5/2020
17.4.0.46 702 1/30/2020
17.4.0.44 1,066 1/21/2020
17.4.0.43 701 1/14/2020
17.4.0.41 760 1/7/2020
17.4.0.40 740 12/24/2019
17.4.0.39 785 12/17/2019
17.3.0.34 848 12/10/2019
17.3.0.33 657 12/4/2019
17.3.0.30 648 12/3/2019
17.3.0.29 871 11/26/2019
17.3.0.28 738 11/19/2019
17.3.0.27 698 11/12/2019
17.3.0.26 707 11/5/2019
17.3.0.21 690 10/29/2019
17.3.0.19 696 10/22/2019
17.3.0.17 661 10/15/2019
17.3.0.14 735 10/3/2019
17.3.0.9-beta 494 9/20/2019
17.2.0.51 773 9/10/2019
17.2.0.49 717 9/3/2019
17.2.0.47 698 8/27/2019
17.2.0.46 730 8/22/2019
17.2.0.41 803 8/13/2019
17.2.0.40 754 8/6/2019
17.2.0.39 761 7/30/2019
17.2.0.36 724 7/23/2019
17.2.0.35 718 7/17/2019
17.2.0.34 794 7/11/2019
17.2.0.28-beta 723 6/27/2019
17.1.0.53 1,384 6/25/2019
17.1.0.52 749 6/18/2019
17.1.0.51 776 6/11/2019
17.1.0.50 782 6/4/2019
17.1.0.49 805 5/28/2019
17.1.0.48 1,222 5/21/2019
17.1.0.47 913 5/14/2019
17.1.0.44 766 5/7/2019
17.1.0.43 776 4/30/2019
17.1.0.42 806 4/23/2019
17.1.0.41 1,841 4/16/2019
17.1.0.40 759 4/9/2019
17.1.0.38 872 3/29/2019
17.1.0.32-beta 530 3/13/2019
16.4.0.54 2,071 2/19/2019
16.4.0.53 852 2/14/2019
16.4.0.52 918 2/5/2019
16.4.0.48 1,059 1/22/2019
16.4.0.47 896 1/16/2019
16.4.0.46 17,131 1/8/2019
16.4.0.44 858 12/24/2018
16.4.0.42 907 12/17/2018
16.4.0.40-beta 613 12/10/2018
16.3.0.36 1,214 11/27/2018
16.3.0.35-beta 636 11/23/2018
16.3.0.29 978 10/30/2018
16.3.0.21 2,322 9/21/2018