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 9061339
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:27:32+00:00 2026-06-16T15:27:32+00:00

I have a checkbox that allows my program to enable disable series displayed on

  • 0

I have a checkbox that allows my program to enable disable series displayed on my chart. When I disable the serie, it is removed from the chartArea and as well from the legend. Is it possible to keep it in the legend even if disabled? I’d like to change it’s transparency in the legend so that it looks as disabled and set it back to full color on enabled.

Here’s a link of what I am looking for:

http://postimage.org/image/kj675p14j/

  • 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-06-16T15:27:33+00:00Added an answer on June 16, 2026 at 3:27 pm

    EDIT :

    I found another (much simpler) way to do this. You can simply handle the CustomizeLegend event (and disable the series using series.Enabled):

    void chart1_CustomizeLegend(object sender, CustomizeLegendEventArgs e)
    {
        e.LegendItems.Clear();
        foreach (var series in this.chart1.Series)
        {
            var legendItem = new LegendItem();
            legendItem.SeriesName = series.Name;
            legendItem.ImageStyle = LegendImageStyle.Rectangle;
            legendItem.BorderColor = Color.Transparent;
            legendItem.Name = series.Name + "_legend_item";
    
            int i = legendItem.Cells.Add(LegendCellType.SeriesSymbol, "", ContentAlignment.MiddleCenter);
            legendItem.Cells.Add(LegendCellType.Text, series.Name, ContentAlignment.MiddleCenter);
    
            if (series.Enabled)
                legendItem.Color = series.Color;
            else
                legendItem.Color = Color.FromArgb(100, series.Color);
            e.LegendItems.Add(legendItem);
        }
    }
    

    Result:

    all series enabled

    one series disabled

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

Sidebar

Related Questions

I have a modal popup that allows an admin to choose from a variety
I want to have the first checkbox that allows me to check or uncheck
I have a checkbox that if checked allows my child resource called Engineer to
I have a form that allows the user to add or remove users from
I have a form selection that allows users to select a product from a
I have a checkbox that I do not want the user to have direct
I have a checkbox that when it is clicked it submits the form to
In my html.beginform I have this checkbox that I want to persist. I'm not
I would like to have a checkbox preference that takes the user to a
I am trying to create my own Native win32 C++ Checkbox that can have

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.