Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 758217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T15:27:12+00:00 2026-05-14T15:27:12+00:00

Using the answer Generating the Image from a Controller from this post , I

  • 0

Using the answer Generating the Image from a Controller from this post, I created a controller action to return a chart image as seen below (the X and Y values are just there as test data):

    public FileContentResult HistoryChart()
    {
        Chart chart = new Chart();
        string[] currencies = { "ZAR", "USD", "GBP", "JPY" };

        foreach (string currency in currencies)
        {
            Series series = new Series(currency);
            series.ChartType = SeriesChartType.FastLine;
            for (int x = 0; x <= 30; x++)
                series.Points.AddXY(x, (x * 5));
            chart.Series.Add(series);
        }

        using (MemoryStream ms = new MemoryStream())
        {
            chart.SaveImage(ms, ChartImageFormat.Png);
            ms.Seek(0, SeekOrigin.Begin);

            return File(ms.ToArray(), "image/png", "mychart.png");
        }
    }

The problem is, the image that the controller returns is blank (although it DOES return an image)

Im hoping its something simple that I have left out! Any input would be appreciated, thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T15:27:12+00:00Added an answer on May 14, 2026 at 3:27 pm

    Hope this helps…..

    I’ve had the same problem:

    It’s all to do with colors, I added some code to yours after having used another example from this blog and deduced the issue from that – so ‘Thanks’ to everyone….

        public FileContentResult HistoryChart()
        {
            Chart chart = new Chart();
            **chart.BackColor = Color.Transparent;**
    
            string[] currencies = { "ZAR", "USD", "GBP", "JPY" };
    
            foreach (string currency in currencies)
            {
                Series series = new Series(currency);
                series.ChartType = SeriesChartType.FastLine;
                for (int x = 0; x <= 30; x++)
                    series.Points.AddXY(x, (x * 5));
                chart.Series.Add(series);
            }
    
            **ChartArea ca1 = new ChartArea("ca1");
            ca1.BackColor = Color.Cyan;
            chart.ChartAreas.Add(ca1);**
    
            using (MemoryStream ms = new MemoryStream())
            {
                chart.SaveImage(ms, ChartImageFormat.Png);
                ms.Seek(0, SeekOrigin.Begin);
    
                return File(ms.ToArray(), "image/png", "mychart.png");
            }
        } 
    

    Also, you will need to ensure that your controller has:

    using System.Drawing;
    using System.Web.UI.WebControls;

    Cheers to all…

    JK.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using this answer , I created a sample localized app. My question is, is
I am using the accepted answer from this question . The relevant code is
I've seen several questions regarding problems with generating classes from XML Schema using xsd.exe
I'm generating business objects from this schema using Enterprise Architect. The schema has the
Im using the answer to this question to convert an array of XML to
I know that this has already been asked here but the answer (using a
I'm using the accepted answer to this question to help me build an HTML
This question came into my mind while generating sample data for a SO-answer. I
I'm using formtastic to collect information from a form and post dirctly to an
If I am generating POCO objects from EntityFramework, and using these to go to/from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.