Click here to Skip to main content
Licence CPOL
First Posted 1 Dec 2008
Views 117,011
Bookmarked 124 times

New Microsoft Chart Controls for Web and Windows Forms Applications

By | 1 Dec 2008 | Article
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:

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)

About the Author

Cirilo Meggiolaro

Team Leader

Canada Canada

Member

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!!!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionSave Chart in C# Pinmembersankar666422:54 16 May '12  
AnswerRe: Save Chart in C# PinprotectorPete O'Hanlon23:30 16 May '12  
Questionthanks very much Pinmemberparastoo_8121420:05 21 Jan '12  
Generaltwo Pies with connecting lines PinmemberSysSoft3:25 12 Apr '11  
QuestionWIndows 7 Support Microsoft Chart Controls Pinmembersundaramoorthyp16:44 11 Nov '10  
AnswerRe: WIndows 7 Support Microsoft Chart Controls Pinmemberiohn200023:05 7 Sep '11  
GeneralRe: WIndows 7 Support Microsoft Chart Controls Pinmemberfgoldenstein7:46 11 Jan '12  
GeneralXCOPY web deployment. PinmemberManique22:55 3 Mar '10  
GeneralVersion PinmemberCiro Zamudio4:37 3 Feb '10  
GeneralInstructions for Using the Chart Controls in ASP.NET MVC PinmemberMichael Ceranski3:49 25 Jan '10  
QuestionHow to use linegraph Pinmemberduo921:33 15 Jul '09  
AnswerRe: How to use linegraph [modified] Pinmemberwilliamw0:32 23 Jul '09  
GeneralRe: How to use linegraph [modified] Pinmemberduo916:41 23 Jul '09  
GeneralRe: How to use linegraph Pinmemberwilliamw1:48 28 Jul '09  
GeneralRe: How to use linegraph [modified] Pinmemberduo921:13 30 Jul '09  
GeneralRe: How to use linegraph Pinmemberwilliamw22:43 30 Jul '09  
GeneralRe: How to use linegraph Pinmemberduo923:08 30 Jul '09  
GeneralRe: How to use linegraph Pinmemberwilliamw23:15 30 Jul '09  
GeneralRe: How to use linegraph Pinmemberduo921:39 2 Aug '09  
QuestionVery Slow Pinmemberhsachdevah5:03 15 Jul '09  
Generalcontrols working with WPF browser PinmemberEnda Mannion12:40 27 May '09  
QuestionMS Chart PinmemberMember 40030683:11 30 Apr '09  
GeneralThanks for giving a hint. Pinmemberravi_mishra23:35 15 Apr '09  
QuestionDoes this control has a unmanaged version? Pinmemberlsgt14:20 5 Jan '09  
GeneralThanks. PinmemberHamed Mosavi23:03 16 Dec '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 1 Dec 2008
Article Copyright 2008 by Cirilo Meggiolaro
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid