Syncfusion.OfficeChartToImageConverter.AspNet.Mvc4 27.2.5

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

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

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.Mvc4 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 net40 is compatible.  net403 was computed.  net45 was computed.  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
27.2.5 106 12/2/2024
27.2.4 97 11/26/2024
27.2.3 95 11/22/2024
27.2.2 95 11/15/2024
27.1.58 105 11/4/2024
27.1.57 122 10/28/2024
27.1.56 91 10/23/2024
27.1.55 88 10/21/2024
27.1.53 123 10/14/2024
27.1.52 102 10/7/2024
27.1.51 118 9/30/2024
27.1.50 113 9/23/2024
27.1.48 110 9/18/2024
26.2.14 106 9/9/2024
26.2.13 112 9/5/2024
26.2.12 108 9/2/2024
26.2.11 117 8/27/2024
26.2.10 131 8/19/2024
26.2.9 133 8/12/2024
26.2.8 104 8/5/2024
26.2.7 85 7/29/2024
26.2.5 102 7/26/2024
26.2.4 93 7/24/2024
26.1.42 134 7/15/2024
26.1.41 127 7/8/2024
26.1.40 146 7/1/2024
26.1.39 106 6/24/2024
26.1.38 121 6/18/2024
26.1.35 102 6/11/2024
25.2.7 120 6/3/2024
25.2.6 116 5/28/2024
25.2.5 121 5/21/2024
25.2.4 106 5/14/2024
25.2.3 117 5/8/2024
25.1.42 125 4/29/2024
25.1.41 134 4/23/2024
25.1.40 127 4/15/2024
25.1.39 125 4/8/2024
25.1.38 140 4/1/2024
25.1.37 126 3/26/2024
25.1.35 146 3/15/2024
24.2.9 165 3/4/2024
24.2.8 131 2/26/2024
24.2.7 142 2/19/2024
24.2.6 140 2/14/2024
24.2.5 146 2/12/2024
24.2.4 121 2/5/2024
24.2.3 120 1/31/2024
24.1.47 118 1/22/2024
24.1.46 137 1/16/2024
24.1.45 160 1/8/2024
24.1.44 142 1/2/2024
24.1.43 128 12/27/2023
24.1.41 129 12/18/2023
23.2.7 181 12/6/2023
23.2.6 139 11/28/2023
23.2.5 152 11/23/2023
23.2.4 131 11/20/2023
23.1.44 157 11/6/2023
23.1.43 160 10/30/2023
23.1.42 156 10/23/2023
23.1.41 152 10/16/2023
23.1.40 175 10/10/2023
23.1.39 166 10/4/2023
23.1.38 141 9/26/2023
23.1.36 155 9/15/2023
22.2.12 190 9/5/2023
22.2.11 344 8/28/2023
22.2.10 157 8/22/2023
22.2.9 178 8/14/2023
22.2.8 207 8/7/2023
22.2.7 176 8/2/2023
22.2.5 180 7/27/2023
22.1.39 217 7/18/2023
22.1.38 183 7/11/2023
22.1.37 191 7/3/2023
22.1.36 201 6/28/2023
22.1.34 198 6/21/2023
21.2.10 222 6/13/2023
21.2.9 205 6/6/2023
21.2.8 202 5/30/2023
21.2.6 200 5/22/2023
21.2.5 236 5/15/2023
21.2.4 245 5/9/2023
21.2.3 253 5/3/2023
21.1.41 272 4/19/2023
21.1.39 407 4/10/2023
21.1.38 295 4/3/2023
21.1.37 305 3/29/2023
21.1.35 297 3/23/2023
20.4.0.54 305 3/13/2023
20.4.0.53 294 3/7/2023
20.4.0.52 309 2/28/2023
20.4.0.51 325 2/21/2023
20.4.0.50 337 2/14/2023
20.4.0.49 334 2/7/2023
20.4.0.48 337 2/1/2023
20.4.0.44 379 1/18/2023
20.4.0.43 382 1/10/2023
20.4.0.42 386 1/4/2023
20.4.0.41 363 12/29/2022
20.4.0.40 359 12/28/2022
20.4.0.38 332 12/21/2022
20.3.0.61 337 12/12/2022
20.3.0.60 362 12/6/2022
20.3.0.59 407 11/29/2022
20.3.0.58 396 11/22/2022
20.3.0.57 420 11/15/2022
20.3.0.56 417 11/8/2022
20.3.0.52 472 10/27/2022
20.3.0.50 514 10/18/2022
20.3.0.49 3,861 10/11/2022
20.3.0.48 460 10/5/2022
20.3.0.47 494 9/29/2022
20.2.0.50 537 9/20/2022
20.2.0.49 507 9/13/2022
20.2.0.48 505 9/6/2022
20.2.0.46 505 8/30/2022
20.2.0.45 493 8/23/2022
20.2.0.44 522 8/16/2022
20.2.0.43 530 8/8/2022
20.2.0.40 501 7/26/2022
20.2.0.39 506 7/19/2022
20.2.0.38 522 7/12/2022
20.2.0.36 538 6/30/2022
20.1.0.61 526 6/20/2022
20.1.0.60 509 6/14/2022
20.1.0.59 495 6/6/2022
20.1.0.58 539 5/31/2022
20.1.0.57 547 5/23/2022
20.1.0.56 552 5/17/2022
20.1.0.55 516 5/12/2022
20.1.0.52 543 5/3/2022
20.1.0.51 561 4/26/2022
20.1.0.50 564 4/19/2022
20.1.0.48 541 4/12/2022
20.1.0.47 794 4/4/2022
19.4.0.56 596 3/14/2022
19.4.0.55 1,542 3/8/2022
19.4.0.54 528 2/28/2022
19.4.0.53 535 2/22/2022
19.4.0.52 552 2/15/2022
19.4.0.50 562 2/8/2022
19.4.0.48 569 1/31/2022
19.4.0.47 539 1/25/2022
19.4.0.43 501 1/18/2022
19.4.0.42 535 1/11/2022
19.4.0.41 392 1/4/2022
19.4.0.40 400 12/28/2021
19.4.0.38 397 12/17/2021
19.3.0.59 440 12/14/2021
19.3.0.57 427 12/7/2021
19.3.0.56 1,047 11/29/2021
19.3.0.55 414 11/23/2021
19.3.0.54 398 11/17/2021
19.3.0.53 451 11/12/2021
19.3.0.48 460 11/2/2021
19.3.0.47 453 10/26/2021
19.3.0.46 465 10/19/2021
19.3.0.45 465 10/12/2021
19.3.0.44 462 10/5/2021
19.3.0.43 480 9/30/2021
19.2.0.62 536 9/13/2021
19.2.0.60 448 9/7/2021
19.2.0.59 442 8/30/2021
19.2.0.57 507 8/24/2021
19.2.0.56 466 8/17/2021
19.2.0.55 491 8/11/2021
19.2.0.51 513 8/2/2021
19.2.0.49 453 7/26/2021
19.2.0.48 488 7/19/2021
19.2.0.47 507 7/13/2021
19.2.0.46 487 7/6/2021
19.2.0.44 543 6/30/2021
19.1.0.69 514 6/14/2021
19.1.0.67 531 6/7/2021
19.1.0.66 521 5/31/2021
19.1.0.65 473 5/24/2021
19.1.0.64 475 5/19/2021
19.1.0.63 488 5/13/2021
19.1.0.59 503 5/3/2021
19.1.0.58 477 4/26/2021
19.1.0.57 517 4/20/2021
19.1.0.56 484 4/13/2021
19.1.0.55 492 4/6/2021
19.1.0.54 518 3/30/2021
18.4.0.49 1,215 3/22/2021
18.4.0.48 490 3/16/2021
18.4.0.47 531 3/9/2021
18.4.0.46 826 3/2/2021
18.4.0.44 528 2/23/2021
18.4.0.43 506 2/15/2021
18.4.0.42 505 2/9/2021
18.4.0.41 507 2/2/2021
18.4.0.39 487 1/28/2021
18.4.0.35 525 1/19/2021
18.4.0.34 483 1/12/2021
18.4.0.33 490 1/4/2021
18.4.0.32 532 12/30/2020
18.4.0.31 509 12/22/2020
18.4.0.30 522 12/17/2020
18.3.0.53 507 12/8/2020
18.3.0.52 540 11/30/2020
18.3.0.51 584 11/23/2020
18.3.0.50 581 11/17/2020
18.3.0.48 538 11/10/2020
18.3.0.47 545 11/5/2020
18.3.0.44 535 10/27/2020
18.3.0.42 613 10/20/2020
18.3.0.40 643 10/12/2020
18.3.0.38 615 10/7/2020
18.3.0.35 533 10/1/2020
18.2.0.59 580 9/22/2020
18.2.0.58 663 9/15/2020
18.2.0.57 565 9/8/2020
18.2.0.56 566 9/1/2020
18.2.0.55 599 8/25/2020
18.2.0.54 556 8/18/2020
18.2.0.48 624 8/4/2020
18.2.0.47 691 7/28/2020
18.2.0.46 597 7/21/2020
18.2.0.45 611 7/14/2020
18.2.0.44 5,370 7/6/2020
18.1.0.59 698 6/23/2020
18.1.0.57 613 6/16/2020
18.1.0.56 589 6/9/2020
18.1.0.55 610 6/2/2020
18.1.0.54 652 5/27/2020
18.1.0.53 657 5/19/2020
18.1.0.52 602 5/13/2020
18.1.0.48 601 5/5/2020
18.1.0.46 610 4/28/2020
18.1.0.45 604 4/21/2020
18.1.0.44 631 4/14/2020
18.1.0.43 650 4/7/2020
18.1.0.42 636 4/1/2020
18.1.0.36-beta 419 3/19/2020
17.4.0.55 668 3/10/2020
17.4.0.53 666 3/3/2020
17.4.0.51 660 2/25/2020
17.4.0.50 629 2/18/2020
17.4.0.49 629 2/11/2020
17.4.0.47 661 2/5/2020
17.4.0.46 671 1/30/2020
17.4.0.44 677 1/21/2020
17.4.0.43 649 1/14/2020
17.4.0.41 686 1/7/2020
17.4.0.40 685 12/24/2019
17.4.0.39 679 12/17/2019
17.3.0.34 637 12/10/2019
17.3.0.33 635 12/4/2019
17.3.0.30 642 12/3/2019
17.3.0.29 640 11/26/2019
17.3.0.28 645 11/19/2019
17.3.0.27 653 11/12/2019
17.3.0.26 681 11/5/2019
17.3.0.21 666 10/29/2019
17.3.0.19 669 10/22/2019
17.3.0.17 697 10/15/2019
17.3.0.14 651 10/3/2019
17.3.0.9-beta 476 9/20/2019
17.2.0.51 720 9/10/2019
17.2.0.49 683 9/3/2019
17.2.0.47 695 8/27/2019
17.2.0.46 733 8/22/2019
17.2.0.41 734 8/13/2019
17.2.0.40 698 8/6/2019
17.2.0.39 692 7/30/2019
17.2.0.36 678 7/23/2019
17.2.0.35 690 7/17/2019
17.2.0.34 741 7/11/2019
17.2.0.28-beta 489 6/27/2019
17.1.0.53 718 6/25/2019
17.1.0.52 749 6/18/2019
17.1.0.51 780 6/11/2019
17.1.0.50 754 6/4/2019
17.1.0.49 760 5/28/2019
17.1.0.48 717 5/21/2019
17.1.0.47 747 5/14/2019
17.1.0.44 763 5/7/2019
17.1.0.43 722 4/30/2019
17.1.0.42 807 4/23/2019
17.1.0.41 784 4/16/2019
17.1.0.40 728 4/9/2019
17.1.0.38 773 3/29/2019
17.1.0.32-beta 506 3/13/2019
16.4.0.54 866 2/19/2019
16.4.0.53 822 2/14/2019
16.4.0.52 853 2/5/2019
16.4.0.48 833 1/22/2019
16.4.0.47 870 1/16/2019
16.4.0.46 944 1/8/2019
16.4.0.44 842 12/24/2018
16.4.0.42 849 12/17/2018
16.4.0.40-beta 574 12/10/2018
16.3.0.36 914 11/27/2018
16.3.0.35-beta 636 11/23/2018
16.3.0.29 890 10/30/2018
16.3.0.21 956 9/21/2018