TechBubbles Microsoft Technology BLOG

ASP.NET 3.5 Chart Control

Introduction

ASP.NET 3.5 SP1 having a new charting control which allows the developers to easily add different data visualizations to their web applications.The control supporting different chart types like column charts,line charts and pie charts and also advance chart types like funnel and pyramid charts.This post explains about using this control in web applications.

You can download the chart control here which installs all runtime components for using the control. It also places the System.Web.DataVisualization in GAC.

You can also download the Control Add-on for VS 2008 Tool box which gives you toolbox integration and intellisense support at design time.

After the installation you can find the chart control in the toolbox window as shown below

ChartTool

1. Drag the control to the web page, it makes the changes to web.config file control section as shown in figure

 WebConfig

2. The basic elements of the ASP.NET 3.5 chart control are

  •     Chart Series
  •     Chart Area

ChartHtml 

Every chart contains at least one series which used to populate the data and can contain one or more chart areas for plotting.

3. Add a SqlDataSource control to the web page and configure it for retrieving the data.

Datasource

4. Specify the XValue and YValue members in code behind

Chart1.Series[0].XValueMember = "Name";
Chart1.Series[0].YValueMembers = "Sales";

 

chartarea

5. Run the application it shows the following output. By default ASP.NET Chart control shows the data in column type chart.

result

6. You can customize every element of ASP.NET Chart control ,  including backgrounds,axis,titles, legends and labels.

You can find more about developing different types of charts using ASP.NET 3.5 chart control here.

About the author

Kalyan Bandarupalli

My name is kalyan, I am a software architect and builds the applications using Microsoft .NET technologies. Here I am trying to share what I feel and what I think with whoever comes along wandering to Internet home of mine.I hope that this page and its contents will speak for me and that is the reason I am not going to say anything specially about my self here.

3 Comments

Leave a Reply to Arşiv Yazılım Cancel reply

TechBubbles Microsoft Technology BLOG

Follow me

Archives

Tag Cloud