Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 19.3.0.48

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 --version 19.3.0.48                
NuGet\Install-Package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 -Version 19.3.0.48                
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.ExcelChartToImageConverter.AspNet.Mvc5" Version="19.3.0.48" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 --version 19.3.0.48                
#r "nuget: Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5, 19.3.0.48"                
#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.ExcelChartToImageConverter.AspNet.Mvc5 as a Cake Addin
#addin nuget:?package=Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5&version=19.3.0.48

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

Syncfusion ExcelChart-to-Image converter is a .NET class library for converting Excel chart to image in any ASP.NET MVC application without using Microsoft Office dependencies.

Key features

  • Following chart types are supported in Excel Chart To Image Conversion.

    • Area
    • Area_Stacked
    • Area_Stacked_100
    • Area_3D
    • Bar_Clustered
    • Bar_Stacked
    • Bar_Stacked_100
    • Bar_Clustered_3D
    • Bar_Stacked_3D
    • Bar_Stacked_100_3D
    • Bubble
    • Column_Clustered
    • Column_Stacked
    • Column_Stacked_100
    • Column_3D
    • Column_Clustered_3D
    • Column_Stacked_3D
    • Column_Stacked_100_3D
    • Doughnut
    • Doughnut_Exploded
    • Line
    • Line_Markers
    • Line_3D
    • Pie
    • Pie_Exploded
    • Pie_3D
    • Pie_Exploded_3D
    • Radar
    • Radar_Filled
    • Radar_Markers
    • Scatter_Line
    • Scatter_Line_Markers
    • Scatter_Markers
    • Scatter_SmoothedLine
    • Scatter_SmoothedLine_Markers
    • Stock_HighLowClose
    • Stock_OpenHighLowClose
    • Funnel
    • Waterfall
    • Histogram
    • Pareto
  • Following chart elements are supported in Excel Chart to Image Conversion.

    • Axis
    • Axis titles
    • Chart title
    • Data labels
    • Grid lines
    • Legend
    • Trend line

Getting Started

Installation commands

  • Simply run Install-Package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 from the Package Manager Console in Visual Studio to fetch the NuGet package.
  • If you already have Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 for .NET and want to upgrade the version, please run Update-Package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 to get the latest version.
  • You can run the following snippets in your environment to see how Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 works.

Convert the chart in Excel workbook to Image

The following code snippet explains how to convert an Excel chart to Image.

//Initialize ExcelEngine.
using (ExcelEngine excelEngine = new ExcelEngine())
{
    //Initialize IApplication.
    IApplication application = excelEngine.Excel;
	//Set the default version as Xlsx.
    application.DefaultVersion = ExcelVersion.Xlsx;
	//Initialize ChartToImageConverter.
    application.ChartToImageConverter = new ChartToImageConverter();
	//Set the Best scaling mode to ChartToImageConverter.
    application.ChartToImageConverter.ScalingMode = ScalingMode.Best;
	//Load an existing workbook into IWorkbook.
    IWorkbook workbook = application.Workbooks.Open(Server.MapPath("App_Data/Sample.xlsx"));
    //Get the worksheet into IWorksheet.
    IWorksheet worksheet = workbook.Worksheets[0];
	//Get the chart into IChart.
    IChart chart = worksheet.Charts[0];
    //Convert the Chart to Image
    MemoryStream stream = new MemoryStream();
    chart.SaveAsImage(stream);
    //Save the Image.
    Image image = Image.FromStream(stream);
    image.Save("Output.png");
}

Resources

Support and feedback

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 26,000+ customers and more than 1 million users, including large financial institutions, Fortune 500 companies, and global IT consultancies.

Today, we provide 1600+ components and frameworks for web (Blazor, ASP.NET Core, ASP.NET MVC, ASP.NET WebForms, JavaScript, Angular, React, Vue, and Flutter), mobile (Xamarin, Flutter, UWP, and JavaScript), and desktop development (WinForms, WPF, WinUI, Flutter 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.

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. To acquire a license, you can purchase one here or start a free 30-day trial here.


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.

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.4 44 11/26/2024
27.2.3 81 11/22/2024
27.2.2 83 11/15/2024
27.1.58 78 11/4/2024
27.1.57 90 10/28/2024
27.1.56 73 10/23/2024
27.1.55 80 10/21/2024
27.1.53 121 10/14/2024
27.1.52 104 10/7/2024
27.1.51 90 9/30/2024
27.1.50 92 9/23/2024
27.1.48 116 9/18/2024
26.2.14 116 9/9/2024
26.2.13 101 9/5/2024
26.2.12 88 9/2/2024
26.2.11 103 8/27/2024
26.2.10 211 8/19/2024
26.2.9 131 8/12/2024
26.2.8 119 8/5/2024
26.2.7 59 7/29/2024
26.2.5 84 7/26/2024
26.2.4 98 7/24/2024
26.1.42 113 7/15/2024
26.1.41 105 7/8/2024
26.1.40 398 7/1/2024
26.1.39 129 6/24/2024
26.1.38 101 6/18/2024
26.1.35 119 6/11/2024
25.2.7 136 6/3/2024
25.2.6 97 5/28/2024
25.2.5 105 5/21/2024
25.2.4 96 5/14/2024
25.2.3 1,858 5/8/2024
25.1.42 109 4/29/2024
25.1.41 113 4/23/2024
25.1.40 111 4/15/2024
25.1.39 140 4/8/2024
25.1.38 231 4/1/2024
25.1.37 151 3/26/2024
25.1.35 240 3/15/2024
24.2.9 158 3/4/2024
24.2.8 114 2/26/2024
24.2.7 145 2/19/2024
24.2.6 122 2/14/2024
24.2.5 115 2/12/2024
24.2.4 135 2/5/2024
24.2.3 144 1/31/2024
24.1.47 136 1/22/2024
24.1.46 142 1/16/2024
24.1.45 157 1/8/2024
24.1.44 149 1/2/2024
24.1.43 141 12/27/2023
24.1.41 205 12/18/2023
23.2.7 219 12/6/2023
23.2.6 209 11/28/2023
23.2.5 200 11/23/2023
23.2.4 182 11/20/2023
23.1.44 180 11/6/2023
23.1.43 186 10/30/2023
23.1.42 181 10/23/2023
23.1.41 181 10/16/2023
23.1.40 193 10/10/2023
23.1.39 346 10/4/2023
23.1.38 1,792 9/26/2023
23.1.36 295 9/15/2023
22.2.12 247 9/5/2023
22.2.11 263 8/28/2023
22.2.10 228 8/22/2023
22.2.9 259 8/14/2023
22.2.8 256 8/7/2023
22.2.7 222 8/2/2023
22.2.5 610 7/27/2023
22.1.39 272 7/18/2023
22.1.38 238 7/11/2023
22.1.37 302 7/3/2023
22.1.36 274 6/28/2023
22.1.34 445 6/21/2023
21.2.10 290 6/13/2023
21.2.9 292 6/6/2023
21.2.8 615 5/30/2023
21.2.6 267 5/22/2023
21.2.5 312 5/15/2023
21.2.4 300 5/9/2023
21.2.3 336 5/3/2023
21.1.41 334 4/19/2023
21.1.39 359 4/10/2023
21.1.38 336 4/3/2023
21.1.37 349 3/29/2023
21.1.35 389 3/23/2023
20.4.0.54 367 3/13/2023
20.4.0.53 391 3/7/2023
20.4.0.52 379 2/28/2023
20.4.0.51 398 2/21/2023
20.4.0.50 391 2/14/2023
20.4.0.49 417 2/7/2023
20.4.0.48 458 2/1/2023
20.4.0.44 460 1/18/2023
20.4.0.43 468 1/10/2023
20.4.0.42 443 1/4/2023
20.4.0.41 424 12/29/2022
20.4.0.40 452 12/28/2022
20.4.0.38 510 12/21/2022
20.3.0.61 418 12/12/2022
20.3.0.60 454 12/6/2022
20.3.0.59 482 11/29/2022
20.3.0.58 513 11/22/2022
20.3.0.57 488 11/15/2022
20.3.0.56 1,745 11/8/2022
20.3.0.52 548 10/27/2022
20.3.0.50 549 10/18/2022
20.3.0.49 598 10/11/2022
20.3.0.48 516 10/5/2022
20.3.0.47 710 9/29/2022
20.2.0.50 669 9/20/2022
20.2.0.49 592 9/13/2022
20.2.0.48 607 9/6/2022
20.2.0.46 612 8/30/2022
20.2.0.45 601 8/23/2022
20.2.0.44 594 8/16/2022
20.2.0.43 704 8/8/2022
20.2.0.40 564 7/26/2022
20.2.0.39 619 7/19/2022
20.2.0.38 626 7/12/2022
20.2.0.36 673 6/30/2022
20.1.0.61 573 6/20/2022
20.1.0.60 612 6/14/2022
20.1.0.59 586 6/6/2022
20.1.0.58 590 5/31/2022
20.1.0.57 602 5/23/2022
20.1.0.56 607 5/17/2022
20.1.0.55 782 5/12/2022
20.1.0.52 586 5/3/2022
20.1.0.51 603 4/26/2022
20.1.0.50 620 4/19/2022
20.1.0.48 629 4/12/2022
20.1.0.47 692 4/4/2022
19.4.0.56 909 3/14/2022
19.4.0.55 1,011 3/8/2022
19.4.0.54 587 2/28/2022
19.4.0.53 586 2/22/2022
19.4.0.52 620 2/15/2022
19.4.0.50 625 2/8/2022
19.4.0.48 666 1/31/2022
19.4.0.47 631 1/25/2022
19.4.0.43 645 1/18/2022
19.4.0.42 639 1/11/2022
19.4.0.41 445 1/4/2022
19.4.0.40 658 12/28/2021
19.4.0.38 587 12/17/2021
19.3.0.59 477 12/14/2021
19.3.0.57 1,223 12/7/2021
19.3.0.56 1,074 11/29/2021
19.3.0.55 475 11/23/2021
19.3.0.54 514 11/17/2021
19.3.0.53 578 11/12/2021
19.3.0.48 557 11/3/2021
19.3.0.47 542 10/26/2021
19.3.0.46 528 10/19/2021
19.3.0.45 4,156 10/12/2021
19.3.0.44 542 10/5/2021
19.3.0.43 577 9/30/2021
19.2.0.62 593 9/13/2021
19.2.0.60 571 9/7/2021
19.2.0.59 548 8/30/2021
19.2.0.57 569 8/24/2021
19.2.0.56 585 8/17/2021
19.2.0.55 587 8/11/2021
19.2.0.51 598 8/2/2021
19.2.0.49 578 7/26/2021
19.2.0.48 569 7/19/2021
19.2.0.47 630 7/13/2021
19.2.0.46 599 7/6/2021
19.2.0.44 681 6/30/2021
19.1.0.69 682 6/14/2021
19.1.0.67 685 6/7/2021
19.1.0.66 661 5/31/2021
19.1.0.65 600 5/24/2021
19.1.0.64 572 5/19/2021
19.1.0.63 3,978 5/13/2021
19.1.0.59 562 5/3/2021
19.1.0.58 593 4/26/2021
19.1.0.57 617 4/20/2021
19.1.0.56 581 4/13/2021
19.1.0.55 578 4/6/2021
19.1.0.54 647 3/30/2021
18.4.0.49 616 3/22/2021
18.4.0.48 547 3/16/2021
18.4.0.47 565 3/9/2021
18.4.0.46 546 3/2/2021
18.4.0.44 601 2/23/2021
18.4.0.43 569 2/15/2021
18.4.0.42 590 2/9/2021
18.4.0.41 642 2/2/2021
18.4.0.39 614 1/28/2021
18.4.0.35 638 1/19/2021
18.4.0.34 588 1/12/2021
18.4.0.33 6,390 1/4/2021
18.4.0.32 639 12/30/2020
18.4.0.31 606 12/22/2020
18.4.0.30 804 12/17/2020
18.3.0.53 659 12/8/2020
18.3.0.52 648 11/30/2020
18.3.0.51 670 11/23/2020
18.3.0.50 668 11/17/2020
18.3.0.48 625 11/10/2020
18.3.0.47 689 11/5/2020
18.3.0.44 674 10/27/2020
18.3.0.42 718 10/20/2020
18.3.0.40 716 10/12/2020
18.3.0.38 704 10/7/2020
18.3.0.35 762 10/1/2020
18.2.0.59 628 9/22/2020
18.2.0.58 736 9/15/2020
18.2.0.57 649 9/8/2020
18.2.0.56 661 9/1/2020
18.2.0.55 720 8/25/2020
18.2.0.54 686 8/18/2020
18.2.0.48 664 8/4/2020
18.2.0.47 760 7/28/2020
18.2.0.46 684 7/21/2020
18.2.0.45 719 7/14/2020
18.2.0.44 1,731 7/6/2020
18.1.0.59 671 6/23/2020
18.1.0.57 702 6/16/2020
18.1.0.56 684 6/9/2020
18.1.0.55 1,510 6/2/2020
18.1.0.54 729 5/27/2020
18.1.0.53 727 5/19/2020
18.1.0.52 813 5/13/2020
18.1.0.48 720 5/5/2020
18.1.0.46 726 4/28/2020
18.1.0.45 721 4/21/2020
18.1.0.44 724 4/14/2020
18.1.0.43 757 4/7/2020
18.1.0.42 783 4/1/2020
18.1.0.36-beta 489 3/19/2020
17.4.0.55 808 3/10/2020
17.4.0.53 768 3/3/2020
17.4.0.51 769 2/25/2020
17.4.0.50 758 2/18/2020
17.4.0.49 704 2/11/2020
17.4.0.47 725 2/5/2020
17.4.0.46 773 1/30/2020
17.4.0.44 747 1/21/2020
17.4.0.43 758 1/14/2020
17.4.0.41 720 1/7/2020
17.4.0.40 810 12/24/2019
17.4.0.39 826 12/17/2019
17.3.0.34 745 12/10/2019
17.3.0.33 739 12/4/2019
17.3.0.30 740 12/3/2019
17.3.0.29 811 11/26/2019
17.3.0.28 767 11/19/2019
17.3.0.27 757 11/12/2019
17.3.0.26 795 11/5/2019
17.3.0.21 781 10/29/2019
17.3.0.19 747 10/22/2019
17.3.0.17 752 10/15/2019
17.3.0.14 755 10/3/2019
17.3.0.9-beta 500 9/20/2019
17.2.0.51 821 9/10/2019
17.2.0.49 809 9/3/2019
17.2.0.47 835 8/27/2019
17.2.0.46 835 8/22/2019
17.2.0.41 820 8/13/2019
17.2.0.40 848 8/6/2019
17.2.0.39 802 7/30/2019
17.2.0.36 837 7/23/2019
17.2.0.35 839 7/17/2019
17.2.0.34 886 7/11/2019
17.2.0.28-beta 761 6/27/2019
17.1.0.53 865 6/25/2019
17.1.0.52 866 6/18/2019
17.1.0.51 841 6/11/2019
17.1.0.50 854 6/4/2019
17.1.0.49 958 5/28/2019
17.1.0.48 834 5/21/2019
17.1.0.47 895 5/14/2019
17.1.0.44 826 5/7/2019
17.1.0.43 815 4/30/2019
17.1.0.42 897 4/23/2019
17.1.0.41 896 4/16/2019
17.1.0.40 861 4/9/2019
17.1.0.38 934 3/29/2019
17.1.0.32-beta 571 3/13/2019
16.4.0.54 965 2/19/2019
16.4.0.53 912 2/14/2019
16.4.0.52 956 2/5/2019
16.4.0.48 890 1/22/2019
16.4.0.47 964 1/16/2019
16.4.0.46 918 1/8/2019
16.4.0.44 874 12/24/2018
16.4.0.42 936 12/17/2018
16.4.0.40-beta 659 12/10/2018
16.3.0.36 970 11/27/2018
16.3.0.35-beta 684 11/23/2018
16.3.0.29 1,044 10/30/2018
16.3.0.21 1,489 9/21/2018