Click here to Skip to main content
15,860,943 members
Articles / Web Development / ASP.NET

ASP.NET 4.0 Chart Control

Rate me:
Please Sign up or sign in to vote.
4.86/5 (56 votes)
26 Jan 2016CPOL3 min read 465.4K   18.9K   118   42
A short introduction into the new ASP.NET 4.0 Charts Control

NEW: View a live demo of the above charts tester code at http://dotnetcorner.ch/tools/aspnetcharts/default.aspx.

Charts Tester

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":

Image 2

If you drag the chart control into the design-surface, Visual Studio 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:

XML
<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:

XML
<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:

ASP.NET
<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>:

ASP.NET
<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, Visual Studio will add the default chart-control to the code:

ASP.NET
<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 explain the properties "Series" and "ChartAreas":

Series

The Series 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. Additionally, 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.NET
<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:

Image 3

So we successfully created our first chart!

More Information

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 overview about the new ASP.NET Charts Control! If you have any questions or information, 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! :)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Switzerland Switzerland
I'm a software developer with ASP.NET experience since 2007

Projects:
=========
See my projects list here: http://dotnetcorner.ch/Home/Projects

=========
More about me: http://dotnetcorner.ch
My Blog: http://dotnetcorner.ch/Home/Blog

Comments and Discussions

 
GeneralRe: My vote of 3 Pin
Christoph Keller21-Oct-12 3:41
Christoph Keller21-Oct-12 3:41 
GeneralMy vote of 5 Pin
D-Kishore4-Sep-12 1:05
D-Kishore4-Sep-12 1:05 
GeneralRe: My vote of 5 Pin
Christoph Keller4-Sep-12 5:45
Christoph Keller4-Sep-12 5:45 
QuestionGreat! (my vote of 5) Pin
Member 381279315-Mar-12 13:52
Member 381279315-Mar-12 13:52 
AnswerRe: Great! (my vote of 5) Pin
Christoph Keller15-Mar-12 19:59
Christoph Keller15-Mar-12 19:59 
GeneralMy vote of 5 Pin
Akram El Assas4-Mar-12 6:57
Akram El Assas4-Mar-12 6:57 
GeneralRe: My vote of 5 Pin
Christoph Keller4-Mar-12 11:33
Christoph Keller4-Mar-12 11:33 
GeneralMy vote of 5 Pin
Sunasara Imdadhusen21-Sep-11 23:12
professionalSunasara Imdadhusen21-Sep-11 23:12 
Excellent!!
GeneralRe: My vote of 5 Pin
Christoph Keller23-Sep-11 1:53
Christoph Keller23-Sep-11 1:53 
QuestionMy Vote of 0 Pin
Dewey28-Aug-11 15:20
Dewey28-Aug-11 15:20 
AnswerRe: My Vote of 0 Pin
Christoph Keller28-Aug-11 19:08
Christoph Keller28-Aug-11 19:08 
GeneralMy vote of 5 Pin
Anurag Gandhi16-Aug-11 1:01
professionalAnurag Gandhi16-Aug-11 1:01 
GeneralRe: My vote of 5 Pin
Christoph Keller16-Aug-11 18:44
Christoph Keller16-Aug-11 18:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.