Click here to Skip to main content
15,880,608 members
Articles / Desktop Programming / Windows Forms

New Microsoft Chart Controls for Web and Windows Forms Applications

Rate me:
Please Sign up or sign in to vote.
4.44/5 (37 votes)
1 Dec 2008CPOL3 min read 276.7K   6   149   35
Microsoft has just launched a very rich chart control for .NET web and Windows Forms applications. Let’s take a look at some features from it.

Introduction

Microsoft has just launched a very rich chart control for .NET web and Windows Forms applications. Let’s take a look at some features from it.

Prerequisites

Chart Types

The following chart types are available:

  • Bar and columns
  • Line
  • Area
  • Pie and Doughnut
  • Point
  • Range
  • Circular
  • Accumulation
  • Data Distribution
  • Financial

You still have the option to combine more than one chart type.

Bind Types

The following options are available to be used as bind types for your application charts:

  • XML Files
  • Excel Files
  • CSV Files
  • Arrays
  • IEnumerable objects
  • Dataviews

How To...

The examples and documentation are really good and to work with the new Microsoft Chart control is very straightforward. Drag and drop a chart control, set properties in design and / or runtime and it’s done!

Namespace

The namespace you are going to use is System.Web.UI.DataVisualization.Charting.

Main Properties

  • ChartAreas: It is the area where a chart is plotted. Your chart may contain more than one chart area, that means you may plot more than one chart by render and you may even overlap charts.
  • Series: It is the data you may plot on your chart area.
  • ChartType: The chart type property is under the Series property and defines how your data series will be displayed on a chart area.
  • Axes: Defines properties for the X and Y axes like appearance and titles.
  • Palette: Defines the colors set for your chart.
  • Titles: Defines text that may be used to describe a chart, an axis or any other part of the chart.
  • Legends: Defines the legends that will display the data series information.
  • Labels: Defines text that may be displayed close to axis, points and custom labels.

Examples

The following code uses two arrays to create a simple pie chart:

C#
double[] yValues = { 10, 27.5, 7, 12, 45.5};
string[] xNames = { "Mike", "John", "William", "George", "Alex" };
myChart.Series[0].Points.DataBindXY(xNames, yValues);

Output:

piechart1.png

Picture 1: Pie chart created with array databind.

Using the same code but changing some values will produce the following bar chart:

columnchart.png

Picture 2: Column chart created with an array databind.

More Features

This new control set is really rich on the level of customization allowed. Some other features of the new Microsoft Chart control include:

  • Image plot or binary streaming rendering
  • Allows a very complex set of data to be plotted
  • 3D visualization control (perspective, angle, rotation)
  • Events to give even more control over how to plot data, custom images, post plot actions and a click event
  • May be used in conjunction with Ajax to create real time charts, use charts as trigger to load data
  • Drill down chart with preview
  • Image map selection
  • Custom animated tooltips
  • Capture of mouse events

If you want to get more information, take a look at the documentation, check over 200 examples included on the samples or visit the Chart Forum.

History

  • 1st December, 2008: Initial post

License

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


Written By
Team Leader
Canada Canada
I am a brazilian architect / development team lead located in Toronto, Canada.

During the last years I have been working on enterprise applications especially on Microsoft platform for companies located in South and North America.

Application design, coding and especially tunning, debugging and performance related issues troubleshooting make part of my skills bag.

I keep a blog called ITTecture with daily tips related to architecture, performance and .NET coding where you will find some tips, tricks, thoughts and even concepts related to system architecture, application performance and all the cool (but sometimes not so cool) stuff that I’ve heard, read, debbuged, fixed, refactored and coded and how to avoid long overnights far away from home!!!

Comments and Discussions

 
GeneralThanks. Pin
Hamed Musavi16-Dec-08 23:03
Hamed Musavi16-Dec-08 23:03 
Generalthanks it is good!! Pin
Seraph_summer7-Dec-08 22:56
Seraph_summer7-Dec-08 22:56 
GeneralMy vote of 1 Pin
Maximilian Korporal3-Dec-08 1:43
Maximilian Korporal3-Dec-08 1:43 
GeneralMy vote of 2 Pin
kornakar2-Dec-08 19:36
kornakar2-Dec-08 19:36 
GeneralMy vote of 2 Pin
eran20222-Dec-08 6:13
professionaleran20222-Dec-08 6:13 
General;} Pin
radioman.lt2-Dec-08 1:25
radioman.lt2-Dec-08 1:25 
GeneralMy vote of 1 Pin
grundt1-Dec-08 13:10
grundt1-Dec-08 13:10 
GeneralRe: My vote of 1 Pin
Mohamed Y. Elamrani1-Dec-08 21:41
Mohamed Y. Elamrani1-Dec-08 21:41 
GeneralRe: My vote of 1 Pin
Greizzerland2-Dec-08 2:34
Greizzerland2-Dec-08 2:34 
GeneralRe: My vote of 1 Pin
mBonafe9-Dec-08 3:17
mBonafe9-Dec-08 3:17 

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.