Click here to Skip to main content
15,886,362 members
Articles / Multimedia / GDI+
Article

A Charting Custom Control using Microsoft OWC

Rate me:
Please Sign up or sign in to vote.
2.43/5 (16 votes)
15 Sep 20043 min read 154.3K   1.9K   40   50
This is a .NET custom control for web-based charting using Office Web Component technology.

Image 1

Introduction

There are quite a lot commercial or free charting controls available in the market. However, most of the charting requirements are presented with Microsoft Excel charts. In other words, if we can utilize the rich features offered by MS OWC (Office Web Component) including the office charting support, we shall be able to present Microsoft Office charts in web pages.

By employing MS OWC technology, there are basically two approaches to implement the charting control, i.e., server-driven and or client-driven. The server-driven approach is to render the chart at the server side with OWC COM class, through .NET interop. Another one is using OWC ActiveX object. The 2nd approach requires the Office OWC support at the client side and thus incurs the license issue. In this ChartFactory custom control, the server-driven model is adopted. As to how to install the OWC license on the server side, please refer to Microsoft site.

Using the code

Step 1: Adding Control Reference

To use the custom control, you can include the assembly from the toolbox bar in your VS.NET IDE (Add/Remove items -> locate the assembly -> OK). Once done, you can drag and drop that control into ASP.NET forms in any ASPX page or ASCX page.

Step 2: Prepare Chart Data

In order to render the charting, you will have to fill the DataSet first that is required by ChartFactory.AddChartData method. The DataSet instance can only have a single table that must contain three columns having names: "Series", "Group" and "Value". You shall not change the column names as they are referenced by ChartFactory control.

As the ChartFactory doesn't get any chart type information from the DataSet, there shall be some ways to pass the chart type information. It is achieved by passing a parameter ChartFactory.AddChartData method, which however has three types of method signatures:

  • ChartFactory.AddChartData(DataSet dsChart)

    It will choose the DefaultChartType that is set through designer property builder. The chart type will be applied to all series if there are more than one series in the chart.

  • ChartFactory.AddChartData(DataSet dsChart, ChartTypeEnum chartType)

    All series within the chart will have the same chartType.

  • ChartFactory.AddChartData(DataSet dsChart, Hashtable SeriesChartType)

    Each series of the chart may have a different ChartType. Therefore, a mapping between chart series name to chart type are specified in the HashTable.

The ChartFactory.AddChartData method can be called more than once such that more than one chart will be rendered within a single chart space (a term used by MS), and they will all appear in a single GIF image displayed in client HTML.

Image 2

Render the Chart

Finally, it is to invoke the chart rendering from the application code by calling DataBind() method of the ChartFactory control. The reason why it has to be explicitly invoked is to give more control to the application developers so that they can decide when and where to invoke. Normally, on Page_Load event, ChartFactory.DataBind() has to be called for chart rendering. If there is any postback event, and that would change the DataSet of the ChartFactory or any other properties of it, during the postback event this method will have to be called again.

If any other questions or programming extension requirements, please send to my email box. Thanks. I do all this for the sake of sharing something that can be useful to you.

Appendix: CharTypeEnum Definition

C#
#region CharTypeEnum
 public enum ChartTypeEnum
 {
  Area = 1/** must start with value=1 as value=0 cause 
               display problem in property browser */
  AreaStacked,
  AreaStacked3D,
  BarStacked,
  Bar3D,
  Column,
  ColumnStacked,
  Column3DStacked,
  Doughnut,
  Line,
  Line3D,
  LineStacked,
  Pie,
  Pie3D,
  PieExploded,
  Pie3DExploded,
  RadarLine,
  ScatterLine
 }
 #endregion

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
Devoted to IT R&D

8 years of programming experiences

languages: C/C++/VC/C#/java, VB, Delphi

- M.Sc. in Computer Science
- B.Eng in Communication Engineering

Comments and Discussions

 
GeneralRe: Compiled Version Pin
Catiger9-May-05 21:26
Catiger9-May-05 21:26 
GeneralRe: Compiled Version Pin
Rajesh_K_Sharma11-May-06 23:08
Rajesh_K_Sharma11-May-06 23:08 
GeneralRe: Compiled Version Pin
Rajesh_K_Sharma11-May-06 23:09
Rajesh_K_Sharma11-May-06 23:09 
GeneralPie Chart Pin
Anonymous26-Apr-05 0:00
Anonymous26-Apr-05 0:00 
GeneralRe: Pie Chart Pin
catigerman26-Apr-05 14:47
susscatigerman26-Apr-05 14:47 
Generaldoes't work Pin
eliseoroap6-Apr-05 7:50
eliseoroap6-Apr-05 7:50 
GeneralRe: does't work Pin
Catiger6-Apr-05 23:59
Catiger6-Apr-05 23:59 
Generalseries & Group Pin
Anonymous29-Mar-05 22:55
Anonymous29-Mar-05 22:55 
Just wondering why the series clustered in one place instead of appearing in each group? In this case group = month.

Thanks.
QuestionSample? Pin
melcolm8-Mar-05 11:56
melcolm8-Mar-05 11:56 
AnswerRe: Sample? Pin
Catiger9-Mar-05 3:16
Catiger9-Mar-05 3:16 
GeneralImage Pin
Smitha Nishant15-Sep-04 21:55
protectorSmitha Nishant15-Sep-04 21:55 

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.