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

  • Home
  • SEARCH
  • 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 6209233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:56:48+00:00 2026-05-24T05:56:48+00:00

I have a chart where I need to display a different bar for each

  • 0

I have a chart where I need to display a different bar for each relevant year that comes up. Prior to running a query, I have no idea what years will be returned and displayed. I need each year bar to have it’s own unique color that is visibly distinguishable from other years. I also need to be able to reproduce the results of the method (for example, 2011 would always return some exact shade of green). Ideally, I would have a simple method that looks like this:

public static Color GetColorFromYear(int year)
{
    // Some magic.
}

I guess there are probably easy ways to convert an integer to a color value, but I’m hoping someone has solved this problem in a way that produces a nice color scheme and distinguishable colors. Thanks in advance!

  • 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-24T05:56:49+00:00Added an answer on May 24, 2026 at 5:56 am

    I would just use a cycle of colors by taking the modulus of the year, for however many colors you want to use:

    public static Color GetColorFromYear(int year)
    {
        var colors = new Color[] { Color.Red, Color.Yellow, Color.Green, ... };
        return colors[year % colors.Length];
    }
    

    If you want to generate some rainbow of colors, you could use a loop sequence with Color.FromArgb to generate a gradient of colors. This can be adapted to different levels of gradients or different color schemes by changing the for loop parameters and the various components of red, green, and blue.

    var colors = new List<Color>();
    
    // red to green
    for (int i = 10; i <= 250; i += 30)
        colors.Add(Color.FromArgb(255 - i, i, 0))
    
    // green to blue
    for (int i = 10; i <= 250; i += 30)
        colors.Add(Color.FromArgb(0, 255 - i, i))
    
    // blue to red
    for (int i = 10; i <= 250; i += 30)
        colors.Add(Color.FromArgb(i, 0, 255 - i))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to build a custom designed bar chart that displays some simple data.
I have a need to render and display charts (bar charts for now, but
I have 2 arrays of 16 elements (chars) that I need to compare and
I have a chart with a series that denotes a large set (1000's) of
I have a chart (in bitmap format) that I'm trying to render to a
I have to display a column chart in a user form in VBA. Exporting
I have some code that generates image of a pie chart. It's a general
I have an ASP Chart (v4) which displays the data I need perfectly. I
I have a scenario where I need to display charts(generated using jfreecharts) converted it
I have some data I need to display using MSChart, I am looking to

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.