Click here to Skip to main content
Licence 
First Posted 11 Jul 2005
Views 134,388
Bookmarked 108 times

Cristi Potlog's Chart Control for .NET

By | 24 Jul 2005 | Article
This article introduces a sample chart control for Windows Forms.

ChartControl Sample Image.

Introduction

There are a few samples of chart controls out there and a myriad of commercial chart controls. It seems that there is a large market and a strong need for such controls.

I will introduce here a sample chart control just for the sake of making an example. I can't guarantee, though, that it would fit any real world application requirements.

Background

The sample chart uses basic .NET drawing libraries, and there are no third party components. I will illustrate first a basic time-series line chart.

Using the code

To use the control, you need to add a reference to the compiled ChartControl.dll or you can use the source directly by adding the library to your solution. This should provide more flexibility and you can also change the code to fit your particular needs.

The control should appear on the toolbox now (the sample images assume that you are using source code reference):

ChartControl on the toolbox.

You can create a new form on your application project and place a chart control on the form. Set the Dock property to DockStyle.Fill and you will have something like this:

ChartControl with no settings and data.

You can start making changes to the default chart's properties to improve the visual effects of the chart:

ChartControl properties settings.

For a complete list of the settings, you can view the sample project. Then you can have something like what you see in the image at the top of the article.

Chart control details

The chart control is designed from a series of helper classes that hold specific information about how the control should be displayed. You'll notice that these classes are nested within each other so we can have a coherent model for the chart's components.

ChartTitleSettings class

Represents the display setting for a title of the chart control. Through its properties you can change the appearance of the title, both color and font, and also the text that will be displayed.

This class is used to represent the title of the chart, the title of the axis of the chart, and the title of the series.

ChartLabelsSettings class

Represents the display setting for labels of the chart control. The difference between a label and a title is that in a label you cannot control the text that is displayed. A label has, also, the possibility to rotate the text that it displays. You can choose not to display the label by setting the Visible property to False. You can obtain the same effect on a title by setting its title to an empty string.

This class is used to represent the labels that appear next to the chart's series values and the chart's axis pointers.

ChartLineSettings class

Represents the display setting for a line of the chart control. Through its properties you can set the color, weight and dash style of the line, as well as the fact that the line is visible or not.

This class is used to represent the lines of the chart's grid, axis, series and values projections, as well as the border lines of the chart's legend.

ChartGridSettings class

Represents the display setting for the grid of the chart control. You can set the settings of the grid line through a property of type ChartLineSettings. You can also specify the density of the grid by setting the XAxisStyle and YAxisStyle properties.

ChartMarkSettings class

Represents the display setting for a value mark of the chart control. You can change the appearance of the marks of the chart series value by setting fill color and border color and by selecting the shape of the mark from a list of predefined values:

/// <summary>
/// Specifies the shapes of the value series marks for the chart control.
/// </summary>
public enum ChartMarkShapes
{
  None,
  Circle,
  Diamond,
  Square,
  Triangle
}

ChartProjectionsSettings class

Represents the display setting for the projections of the chart control. A projection is a line drawn from the value mark to the time axis to pin point the exact time frame of the value. It consists of a line and a label close to the axis that indicates the time.

You can control the appearance of the line and of the label through properties of type ChartLineSettings and ChartLabelSettings. You can specify if the projection should be displayed or not by setting the boolean Visible property.

ChartSeriesSettings class

Represents the setting for the time series of the chart control. This is a complex class compared with previous ones. You can control the settings of the series including the values to be displayed.

ChartLegendSettings class

Represents the display setting for the legend of the chart control. Through this class' properties, you can specify whether the legend will appear or not, the position at which it will be displayed, and the appearance of the border line of the legend.

Possible values for Position are:

/// <summary>
/// Specifies the position at which the legend will be displayed on the chart control.
/// </summary>
public enum ChartMarkShapes
{
  Top,
  Left,
  Right,
  Bottom
}

ChartTimeScaleSettings class

Represents the setting for the time axis scale of the chart control. It provides properties to control the limits of the time scale.

ChartValueScaleSettings class

Represents the setting for the values axis scale of the chart control. It provides properties to control the limits of the value scale.

ChartTimeAxisSettings and ChartValueAxisSettings class

ChartTimeAxisSettings represents the display setting for the time axis of the chart control.

ChartValueAxisSettings represents the display setting for the value axis of the chart control.

Both these classes are derived from ChartAxisSettingsBase abstract class which provides the basic elements of the axis such as title, label, line and tick styles. Each class adds a Scale property of ChartTimeScaleSettings type and ChartValueScaleSettings type, respectively.

ChartSeriesValue and ChartSeriesValueCollection classes

ChartSeriesValue represents a value from the time series of the chart control. This class has two properties Date and Value that specify the data that should appear on the chart representing a certain value at a specific point in time.

ChartSeriesValueCollection represents a collection of values from the time series of the chart control.

Implementation notes class

This is to be considered work in progress. This is not the final nor the complete version of the control. I released the code so that I can get some feedback from you in order to add more features to it as well as to refine the design, especially the event model design.

Future directions

  • Multiple series support.
  • Designer support through custom editors.
  • More chart types support (e.g., bar chart, pie chart).

History

  • July 11th 2005. Initial release.
  • July 22nd 2005. Article contents update.

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

About the Author

Cristi Potlog

Software Developer

Romania Romania

Member



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
GeneralAdding a Third Y Axis PinmemberMember 3152165:50 18 Mar '12  
GeneralNew Version PinmemberAkramany2:50 29 Jul '09  
Generalnice effort but... Pinmembercinamon11:15 14 Jun '09  
GeneralChartTimeUnits PinmemberOmar.Pessoa10:34 27 Apr '09  
GeneralNew version PinmemberRovira22:42 25 Sep '07  
GeneralRe: New version PinmemberCristi Potlog11:32 7 Oct '07  
GeneralRe: New version Pinmemberdchris_med21:15 12 Feb '09  
AnswerRe: New version PinmemberCristi Potlog22:16 13 Feb '09  
QuestionDouble Values on X-Axis? PinmemberTitty0:25 16 Mar '07  
GeneralAnother free chart PinmemberZvikabh4:06 6 Feb '07  
GeneralJFreeChart PinmemberpescheH22:47 25 Jan '07  
Questionis it possible? Pinmembersam8sam0:14 23 Nov '06  
QuestionHow to make a curve PinmemberBugsaway10:51 9 Aug '06  
AnswerRe: How to make a curve PinmemberCristi Potlog10:30 14 Aug '06  
GeneralGreat Chart but... PinmemberAndyc761:09 16 Mar '06  
AnswerRe: Great Chart but... PinmemberCristi Potlog3:07 16 Mar '06  
GeneralRe: Great Chart but... PinmemberDave Lenz17:46 15 May '06  
Generaltime scale / multiple series PinmemberCole Cranford12:29 31 Jan '06  
Excellent chart, very impressive.
 
Two questions about additional capabilities:
- Can seconds, minutes, and hours be used as baseunits for the x-axis time scale? I am needing to focus on datasets spanning a period measured in seconds.
- Have you implemented a multiple series capability? It would be nice to directly compare multiple series on the same chart.
 
Thanks.
 
Cole Cranford
GeneralSelect parts of chart with mouse Pinmemberwizdd5:52 10 Jan '06  
AnswerRe: Select parts of chart with mouse PinmemberCristi Potlog21:17 10 Jan '06  
General"Measure" events Pinmemberwizdd5:45 10 Jan '06  
GeneralRe: "Measure" events PinmemberCristi Potlog21:12 10 Jan '06  
GeneralIs the hour Pinmembernegralina522:02 25 Aug '05  
GeneralImpovement Pinmembernegralina521:22 25 Aug '05  
AnswerRe: Impovement PinmemberCristi Potlog21:11 28 Aug '05  

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
Web02 | 2.5.120528.1 | Last Updated 25 Jul 2005
Article Copyright 2005 by Cristi Potlog
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid