ASP.NET 4.0 Chart Control

Today I would like to introduce the new Chart Control, which was newly added to the ASP.NET 4.0 Framework.

31 July 2011
Christoph Keller Christoph Keller

Today I would like to introduce the new Chart Control, which was newly added to the ASP.NET 4.0 Framework. With this chart control, you can build exciting graphical charts within minutes.

Our starting position is a new ASP.NET Web Application using Visual Studio 2010.

Implement the control into your page

If you open up your default.aspx and look at the toolbox, you will find the "Chart" Control in the section "Data":

If you drag the chart control into the design-surface, VisualStudio adds some settings to the web.config. This will be done automatically so the following is just an explanation of the changes:

Web.config changes

ChartImage settings

At the node <appSettings> the following entry will be created:

<add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" />

This is the configuration of the temporary storage, where the generated files should be placed at. Please be aware of the fact, that the storage will use a large amount of space, depending on how many charts will be generated.

ChartImage.axd handler

At <system.web><httpHandlers> the following entry will be added:

<add path="ChartImg.axd" verb="GET,HEAD,POST" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false" />

The chartimage.axd is the main-component of the chart-control. The handler will be called for each generated image.

Control-definition

In the node <system.web><pages><controls> the tag-definition will be added:

<add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture:neutral, PublicKeyToken=31bf3856ad364e35" />

This will add the tag-support, that we can use a <asp:chart /> tag in our aspx pages.

Reference to the DataVisualization assembly

At the end, a reference to the DataVisualization assembly will be added at <system.web><compilation><assemblies>:

<add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture:neutral, PublicKeyToken=31bf3856ad364e35"/>

Default chart-element in aspx page

In the aspx page, where you dragged the control in, VisualStudio will add the default chart-control to the code:

<asp:Chart ID="Chart1" runat="server">
    <Series>
        <asp:Series Name="Series1">
        </asp:Series>
    </Series>
    <ChartAreas>
        <asp:ChartArea Name="ChartArea1">
        </asp:ChartArea>
    </ChartAreas>
</asp:Chart>

Charting quickstart

Before we begin using the chart control, I would like to explaine the properties "Series" and "ChartAreas":

Series

The Seriaes collection contains the data-points for one or more data-series. Basically for each line in the chart (consisting of multiple data-points) one series of data is required.

Each series can have its own ChartType. Additionaly, each series can be assigned to any ChartArea where each series can also have its own rendering-properties (for example colors, labels etc.).

ChartAreas The ChartArea collection can have one or more configurations which controls the rendering of a chart. Important: There must be at least one ChartArea definition that the rendering will be executed!

Now we know that we have to add a <asp:Series> in the property <series> which contains our datapoints. Also we have to be sure that there is at least one <asp:ChartArea> at the <ChartAreas> defined, otherwise we would get just a white picture.

After changing the chart-control code to the following:

<asp:Chart ID="cTestChart" runat="server">
    <Series>
        <asp:Series Name="Testing" YValueType="Int32">
            <Points>
                <asp:DataPoint AxisLabel="Test 1" YValues="10" />
                <asp:DataPoint AxisLabel="Test 2" YValues="20" />
                <asp:DataPoint AxisLabel="Test 3" YValues="30" />
                <asp:DataPoint AxisLabel="Test 4" YValues="40" />
            </Points>
        </asp:Series>
    </Series>
    <ChartAreas>
        <asp:ChartArea Name="ChartArea1">
        </asp:ChartArea>
    </ChartAreas>
</asp:Chart>

We will get this output in the rendered output page:

So we successfully created our first chart!

More informations

The chart control in the ASP.NET 4.0 Framework is a big and comprehensive control, so to explain the whole control would be too much for a short blog-post :)

Also, there are already many good introductions and tutorials about the chart control, so I will give you a short list on what you can look at next:

So I hope I was able to give you a short overviewe about the new ASP.NET Charts Control! If you have any questions or informations, please just leave a comment! I'm happy to read any suggestions and I will try to answer every question!

Now, have a nice day and always happy coding! :)

Test Project

Here you find a test-project, where you can play with the charts control:

ChartsTester.zip (22.13kb)

Live Demo

There is a live demo avaliable in the tools-section. Happy playing ;)


comments powered by Disqus