Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 19.4.0.47

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.4.0.47
                    
NuGet\Install-Package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5 -Version 19.4.0.47
                    
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.4.0.47" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5" Version="19.4.0.47" />
                    
Directory.Packages.props
<PackageReference Include="Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5" />
                    
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.ExcelChartToImageConverter.AspNet.Mvc5 --version 19.4.0.47
                    
#r "nuget: Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5, 19.4.0.47"
                    
#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.
#:package Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5@19.4.0.47
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5&version=19.4.0.47
                    
Install as a Cake Addin
#tool nuget:?package=Syncfusion.ExcelChartToImageConverter.AspNet.Mvc5&version=19.4.0.47
                    
Install as a Cake Tool

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
31.1.21 127 9/22/2025
31.1.20 288 9/16/2025
31.1.19 145 9/11/2025
31.1.18 154 9/10/2025
31.1.17 143 9/5/2025
30.2.7 183 8/25/2025
30.2.6 145 8/18/2025
30.2.5 152 8/13/2025
30.2.4 247 8/7/2025
30.1.42 319 7/28/2025
30.1.41 556 7/22/2025
30.1.40 166 7/14/2025
30.1.39 162 7/8/2025
30.1.38 162 7/1/2025
30.1.37 231 6/25/2025
29.2.11 176 6/16/2025
29.2.10 310 6/9/2025
29.2.9 198 6/5/2025
29.2.8 186 6/3/2025
29.2.7 226 5/26/2025
29.2.5 182 5/21/2025
29.2.4 290 5/14/2025
29.1.41 208 5/5/2025
29.1.40 206 4/28/2025
29.1.39 204 4/21/2025
29.1.38 228 4/14/2025
29.1.37 287 4/8/2025
29.1.35 213 4/1/2025
29.1.33 534 3/25/2025
28.2.12 216 3/19/2025
28.2.11 218 3/10/2025
28.2.9 251 3/4/2025
28.2.7 177 2/25/2025
28.2.6 167 2/17/2025
28.2.5 155 2/11/2025
28.2.4 131 2/4/2025
28.2.3 834 1/29/2025
28.1.41 138 1/20/2025
28.1.39 123 1/13/2025
28.1.38 133 1/7/2025
28.1.37 125 12/31/2024
28.1.36 139 12/23/2024
28.1.35 157 12/18/2024
28.1.33 177 12/12/2024
27.2.5 176 12/2/2024
27.2.4 158 11/26/2024
27.2.3 145 11/22/2024
27.2.2 167 11/15/2024
27.1.58 152 11/4/2024
27.1.57 147 10/28/2024
27.1.56 137 10/23/2024
27.1.55 150 10/21/2024
27.1.53 192 10/14/2024
27.1.52 168 10/7/2024
27.1.51 163 9/30/2024
27.1.50 148 9/23/2024
27.1.48 158 9/18/2024
26.2.14 180 9/9/2024
26.2.13 156 9/5/2024
26.2.12 146 9/2/2024
26.2.11 150 8/27/2024
26.2.10 480 8/19/2024
26.2.9 231 8/12/2024
26.2.8 168 8/5/2024
26.2.7 126 7/29/2024
26.2.5 133 7/26/2024
26.2.4 157 7/24/2024
26.1.42 173 7/15/2024
26.1.41 173 7/8/2024
26.1.40 918 7/1/2024
26.1.39 188 6/24/2024
26.1.38 157 6/18/2024
26.1.35 181 6/11/2024
25.2.7 191 6/3/2024
25.2.6 496 5/28/2024
25.2.5 202 5/21/2024
25.2.4 132 5/14/2024
25.2.3 4,410 5/8/2024
25.1.42 157 4/29/2024
25.1.41 147 4/23/2024
25.1.40 155 4/15/2024
25.1.39 203 4/8/2024
25.1.38 310 4/1/2024
25.1.37 204 3/26/2024
25.1.35 323 3/15/2024
24.2.9 205 3/4/2024
24.2.8 184 2/26/2024
24.2.7 191 2/19/2024
24.2.6 197 2/14/2024
24.2.5 173 2/12/2024
24.2.4 184 2/5/2024
24.2.3 205 1/31/2024
24.1.47 180 1/22/2024
24.1.46 200 1/16/2024
24.1.45 209 1/8/2024
24.1.44 201 1/2/2024
24.1.43 198 12/27/2023
24.1.41 256 12/18/2023
23.2.7 272 12/6/2023
23.2.6 255 11/28/2023
23.2.5 241 11/23/2023
23.2.4 246 11/20/2023
23.1.44 226 11/6/2023
23.1.43 244 10/30/2023
23.1.42 237 10/23/2023
23.1.41 243 10/16/2023
23.1.40 266 10/10/2023
23.1.39 411 10/4/2023
23.1.38 1,854 9/26/2023
23.1.36 351 9/15/2023
22.2.12 318 9/5/2023
22.2.11 334 8/28/2023
22.2.10 308 8/22/2023
22.2.9 345 8/14/2023
22.2.8 332 8/7/2023
22.2.7 297 8/2/2023
22.2.5 676 7/27/2023
22.1.39 355 7/18/2023
22.1.38 317 7/11/2023
22.1.37 383 7/3/2023
22.1.36 360 6/28/2023
22.1.34 528 6/21/2023
21.2.10 377 6/13/2023
21.2.9 386 6/6/2023
21.2.8 896 5/30/2023
21.2.6 362 5/22/2023
21.2.5 399 5/15/2023
21.2.4 391 5/9/2023
21.2.3 433 5/3/2023
21.1.41 428 4/19/2023
21.1.39 451 4/10/2023
21.1.38 415 4/3/2023
21.1.37 439 3/29/2023
21.1.35 483 3/23/2023
20.4.0.54 460 3/13/2023
20.4.0.53 477 3/7/2023
20.4.0.52 475 2/28/2023
20.4.0.51 493 2/21/2023
20.4.0.50 483 2/14/2023
20.4.0.49 515 2/7/2023
20.4.0.48 549 2/1/2023
20.4.0.44 558 1/18/2023
20.4.0.43 572 1/10/2023
20.4.0.42 540 1/4/2023
20.4.0.41 528 12/29/2022
20.4.0.40 547 12/28/2022
20.4.0.38 607 12/21/2022
20.3.0.61 515 12/12/2022
20.3.0.60 555 12/6/2022
20.3.0.59 582 11/29/2022
20.3.0.58 614 11/22/2022
20.3.0.57 586 11/15/2022
20.3.0.56 1,846 11/8/2022
20.3.0.52 647 10/27/2022
20.3.0.50 663 10/18/2022
20.3.0.49 698 10/11/2022
20.3.0.48 617 10/5/2022
20.3.0.47 901 9/29/2022
20.2.0.50 770 9/20/2022
20.2.0.49 700 9/13/2022
20.2.0.48 694 9/6/2022
20.2.0.46 718 8/30/2022
20.2.0.45 708 8/23/2022
20.2.0.44 697 8/16/2022
20.2.0.43 826 8/8/2022
20.2.0.40 673 7/26/2022
20.2.0.39 728 7/19/2022
20.2.0.38 738 7/12/2022
20.2.0.36 776 6/30/2022
20.1.0.61 665 6/20/2022
20.1.0.60 719 6/14/2022
20.1.0.59 692 6/6/2022
20.1.0.58 697 5/31/2022
20.1.0.57 727 5/23/2022
20.1.0.56 713 5/17/2022
20.1.0.55 882 5/12/2022
20.1.0.52 683 5/3/2022
20.1.0.51 717 4/26/2022
20.1.0.50 731 4/19/2022
20.1.0.48 743 4/12/2022
20.1.0.47 809 4/4/2022
19.4.0.56 1,020 3/14/2022
19.4.0.55 1,117 3/8/2022
19.4.0.54 707 2/28/2022
19.4.0.53 708 2/22/2022
19.4.0.52 735 2/15/2022
19.4.0.50 742 2/8/2022
19.4.0.48 789 1/31/2022
19.4.0.47 754 1/25/2022
19.4.0.43 765 1/18/2022
19.4.0.42 789 1/11/2022
19.4.0.41 564 1/4/2022
19.4.0.40 845 12/28/2021
19.4.0.38 706 12/17/2021
19.3.0.59 591 12/14/2021
19.3.0.57 1,346 12/7/2021
19.3.0.56 1,182 11/29/2021
19.3.0.55 607 11/23/2021
19.3.0.54 631 11/17/2021
19.3.0.53 694 11/12/2021
19.3.0.48 676 11/3/2021
19.3.0.47 666 10/26/2021
19.3.0.46 652 10/19/2021
19.3.0.45 5,355 10/12/2021
19.3.0.44 639 10/5/2021
19.3.0.43 699 9/30/2021
19.2.0.62 700 9/13/2021
19.2.0.60 689 9/7/2021
19.2.0.59 655 8/30/2021
19.2.0.57 687 8/24/2021
19.2.0.56 703 8/17/2021
19.2.0.55 710 8/11/2021
19.2.0.51 717 8/2/2021
19.2.0.49 680 7/26/2021
19.2.0.48 685 7/19/2021
19.2.0.47 745 7/13/2021
19.2.0.46 707 7/6/2021
19.2.0.44 793 6/30/2021
19.1.0.69 790 6/14/2021
19.1.0.67 801 6/7/2021
19.1.0.66 773 5/31/2021
19.1.0.65 720 5/24/2021
19.1.0.64 692 5/19/2021
19.1.0.63 5,127 5/13/2021
19.1.0.59 675 5/3/2021
19.1.0.58 709 4/26/2021
19.1.0.57 739 4/20/2021
19.1.0.56 697 4/13/2021
19.1.0.55 691 4/6/2021
19.1.0.54 779 3/30/2021
18.4.0.49 741 3/22/2021
18.4.0.48 675 3/16/2021
18.4.0.47 684 3/9/2021
18.4.0.46 686 3/2/2021
18.4.0.44 733 2/23/2021
18.4.0.43 704 2/15/2021
18.4.0.42 709 2/9/2021
18.4.0.41 773 2/2/2021
18.4.0.39 744 1/28/2021
18.4.0.35 764 1/19/2021
18.4.0.34 723 1/12/2021
18.4.0.33 7,925 1/4/2021
18.4.0.32 758 12/30/2020
18.4.0.31 738 12/22/2020
18.4.0.30 941 12/17/2020
18.3.0.53 789 12/8/2020
18.3.0.52 776 11/30/2020
18.3.0.51 804 11/23/2020
18.3.0.50 802 11/17/2020
18.3.0.48 758 11/10/2020
18.3.0.47 823 11/5/2020
18.3.0.44 807 10/27/2020
18.3.0.42 854 10/20/2020
18.3.0.40 843 10/12/2020
18.3.0.38 829 10/7/2020
18.3.0.35 896 10/1/2020
18.2.0.59 765 9/22/2020
18.2.0.58 864 9/15/2020
18.2.0.57 781 9/8/2020
18.2.0.56 795 9/1/2020
18.2.0.55 856 8/25/2020
18.2.0.54 820 8/18/2020
18.2.0.48 798 8/4/2020
18.2.0.47 898 7/28/2020
18.2.0.46 811 7/21/2020
18.2.0.45 850 7/14/2020
18.2.0.44 1,859 7/6/2020
18.1.0.59 801 6/23/2020
18.1.0.57 834 6/16/2020
18.1.0.56 819 6/9/2020
18.1.0.55 1,647 6/2/2020
18.1.0.54 869 5/27/2020
18.1.0.53 871 5/19/2020
18.1.0.52 952 5/13/2020
18.1.0.48 847 5/5/2020
18.1.0.46 864 4/28/2020
18.1.0.45 847 4/21/2020
18.1.0.44 868 4/14/2020
18.1.0.43 885 4/7/2020
18.1.0.42 922 4/1/2020
18.1.0.36-beta 628 3/19/2020
17.4.0.55 937 3/10/2020
17.4.0.53 895 3/3/2020
17.4.0.51 908 2/25/2020
17.4.0.50 894 2/18/2020
17.4.0.49 835 2/11/2020
17.4.0.47 868 2/5/2020
17.4.0.46 907 1/30/2020
17.4.0.44 877 1/21/2020
17.4.0.43 899 1/14/2020
17.4.0.41 856 1/7/2020
17.4.0.40 952 12/24/2019
17.4.0.39 966 12/17/2019
17.3.0.34 886 12/10/2019
17.3.0.33 879 12/4/2019
17.3.0.30 884 12/3/2019
17.3.0.29 946 11/26/2019
17.3.0.28 907 11/19/2019
17.3.0.27 895 11/12/2019
17.3.0.26 937 11/5/2019
17.3.0.21 919 10/29/2019
17.3.0.19 887 10/22/2019
17.3.0.17 895 10/15/2019
17.3.0.14 892 10/3/2019
17.3.0.9-beta 636 9/20/2019
17.2.0.51 966 9/10/2019
17.2.0.49 953 9/3/2019
17.2.0.47 976 8/27/2019
17.2.0.46 973 8/22/2019
17.2.0.41 963 8/13/2019
17.2.0.40 989 8/6/2019
17.2.0.39 938 7/30/2019
17.2.0.36 977 7/23/2019
17.2.0.35 976 7/17/2019
17.2.0.34 1,026 7/11/2019
17.2.0.28-beta 896 6/27/2019
17.1.0.53 1,005 6/25/2019
17.1.0.52 1,003 6/18/2019
17.1.0.51 984 6/11/2019
17.1.0.50 989 6/4/2019
17.1.0.49 1,096 5/28/2019
17.1.0.48 978 5/21/2019
17.1.0.47 1,038 5/14/2019
17.1.0.44 971 5/7/2019
17.1.0.43 954 4/30/2019
17.1.0.42 1,042 4/23/2019
17.1.0.41 1,041 4/16/2019
17.1.0.40 999 4/9/2019
17.1.0.38 1,075 3/29/2019
17.1.0.32-beta 710 3/13/2019
16.4.0.54 1,108 2/19/2019
16.4.0.53 1,056 2/14/2019
16.4.0.52 1,102 2/5/2019
16.4.0.48 1,026 1/22/2019
16.4.0.47 1,105 1/16/2019
16.4.0.46 1,056 1/8/2019
16.4.0.44 1,026 12/24/2018
16.4.0.42 1,082 12/17/2018
16.4.0.40-beta 793 12/10/2018
16.3.0.36 1,127 11/27/2018
16.3.0.35-beta 827 11/23/2018
16.3.0.29 1,205 10/30/2018
16.3.0.21 1,653 9/21/2018