Chart tool is greyed out in Visual Studio

11,429

To make the chart control available, you need:

  1. To be using .Net framework 4.0 or higher, OR for .Net framework 3.5 install this: http://www.microsoft.com/en-us/download/details.aspx?id=14422
  2. On the toolbox context menu -> Choose Items... have the Chart control selected. (Sort by name in the Choose Toolbox Items dialog and scroll to Chart. There are two: one for Windows forms, one for Web forms. You need only select what's relevant.)

The chart control appears in the "Data" section of the Toolbox.

You do NOT need to any any "using" clause to the form source file, or any reference in the project references. (The reference is added automatically for you when you add the control.)

Share:
11,429
user1744675
Author by

user1744675

Updated on June 04, 2022

Comments

  • user1744675
    user1744675 almost 2 years

    I'm trying to add a chart to my Visual Studio form but the button is greyed out. I'm using .NET Framework 3.5 and C#. Following instructions online I've downloaded and installed the dll files from this link: http://www.microsoft.com/en-us/download/details.aspx?id=14422 I also added them as references and added the following line at the top of my form file:

    using System.Windows.Forms.DataVisualization.Charting;

    but the button is still greyed out.

    What have I missed?

  • crokusek
    crokusek over 10 years
    This answer may be for MSVS 2010 as it did not work for me in MSVS 2008 but didn't hurt anything either.