Click here to Skip to main content
15,880,651 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.1K   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

 
QuestionSpace between each bars Pin
maajanes13-Aug-12 2:50
maajanes13-Aug-12 2:50 
QuestionSet scaling to secondary Axis. Pin
Babar Shaik27-Feb-09 1:48
Babar Shaik27-Feb-09 1:48 
QuestionWhere Is AIMS.Data.AccessLogic.Common? Pin
Daniel P. Barcelon25-Sep-07 13:58
Daniel P. Barcelon25-Sep-07 13:58 
AnswerRe: Where Is AIMS.Data.AccessLogic.Common? Pin
Catiger26-Sep-07 16:20
Catiger26-Sep-07 16:20 
GeneralRe: Where Is AIMS.Data.AccessLogic.Common? Pin
Daniel P. Barcelon9-Oct-07 14:15
Daniel P. Barcelon9-Oct-07 14:15 
Generalwhere is AIMS.Data.AccessLogic.Common Pin
fengjinzhi1-Mar-07 14:53
fengjinzhi1-Mar-07 14:53 
GeneralRe: where is AIMS.Data.AccessLogic.Common Pin
Catiger26-Sep-07 16:21
Catiger26-Sep-07 16:21 
QuestionAdd reference Pin
Etwanadoo22-Dec-06 5:50
Etwanadoo22-Dec-06 5:50 
Questioncan i use this ... Pin
kaksx5-Dec-06 16:28
kaksx5-Dec-06 16:28 
AnswerRe: can i use this ... Pin
Catiger26-Sep-07 16:24
Catiger26-Sep-07 16:24 
QuestionHelp Needed Pin
Sarma K N18-Jul-06 22:41
Sarma K N18-Jul-06 22:41 
AnswerRe: Help Needed Pin
Catiger30-Jul-06 15:54
Catiger30-Jul-06 15:54 
QuestionGreat Work Pin
Rakhaylo10-Jun-06 22:43
Rakhaylo10-Jun-06 22:43 
AnswerRe: Great Work Pin
Catiger30-Jul-06 15:59
Catiger30-Jul-06 15:59 
General.DLL Requested Pin
barodesign5-Apr-06 22:50
barodesign5-Apr-06 22:50 
GeneralAccess Denied in ExportPicture Method Pin
kkrac30-Mar-06 3:23
kkrac30-Mar-06 3:23 
Questionvb .net version? Pin
taptu22-Feb-06 12:28
taptu22-Feb-06 12:28 
GeneralDLL needed Pin
gsdtgzesg20-Feb-06 16:58
gsdtgzesg20-Feb-06 16:58 
Generalproblem with pie charts Pin
kkrac1-Feb-06 10:11
kkrac1-Feb-06 10:11 
GeneralRe: problem with pie charts Pin
Catiger5-Feb-06 20:42
Catiger5-Feb-06 20:42 
GeneralRe: problem with pie charts Pin
kkrac6-Feb-06 1:26
kkrac6-Feb-06 1:26 
QuestionRan into a problem with OWC...wondered if you ever observed this behavior with OWC Pin
Arthur Strutzenberg17-Jan-06 9:57
Arthur Strutzenberg17-Jan-06 9:57 
I'm also working on a charting web control for a project, and I ran into a highly bizarre problem--I am not sure what is causing this and wanted to find out if you ever ran into it?

The problem is with line charts (and area charts), namely certain values in the chart magically double, seemingly at random. This has the effect of causing a chart with a normally horizontal slope to appear with a "sawtooth" pattern instead?

Thank You,

Arthur Strutzenberg

It is by caffeine alone that I set my mind in motion. By the beans of java, my thoughts acquire speed the hands acquire the shakes, the shakes become a warning. It is by caffeine alone that I set my mind in motion...

-- modified at 15:58 Tuesday 17th January, 2006
AnswerRe: Ran into a problem with OWC...wondered if you ever observed this behavior with OWC Pin
Catiger5-Feb-06 21:06
Catiger5-Feb-06 21:06 
GeneralRe: Ran into a problem with OWC...wondered if you ever observed this behavior with OWC Pin
Arthur Strutzenberg6-Feb-06 4:44
Arthur Strutzenberg6-Feb-06 4:44 
Generaldll please Pin
Mackerel Catcher6-Jan-06 21:45
Mackerel Catcher6-Jan-06 21:45 

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.