Click here to Skip to main content
Licence 
First Posted 31 Aug 2002
Views 112,706
Downloads 3,108
Bookmarked 125 times

NotifyIconChart

By Maciej Pirog | 31 Aug 2002
A .NET component that creates pie and bar charts in the system tray

1

2

3
4 votes, 15.4%
4
22 votes, 84.6%
5
4.81/5 - 34 votes
μ 4.52, σa 0.64 [?]

Sample Image

Introduction

This component will help you to create a little chart in the System Tray. This is useful in applications like GetRight, which show progress of an operation (eg downloading). It can also show some system information (like CPU usage). NotifyIconChart provides three types of charts: single bar, two bars, and pie.

Using NotifyIconChart

First, add NotifyIconChart.cs to your project. The NotifyIconChart is placed in System.Windows.Forms namespace, so it won’t make any trouble with namespaces in your solution.

You have to add to your form class a System.Windows.Forms.NotifyIcon object. I would like to inherit NotifyIconChart from the NotifyIcon, but it’s sealed (you can’t inherit from the sealed class). So I decided that NotifyIconChart would have a member pointer to a NotifyIcon object.

In the form constructor or Load event, set the NotifyIconChart’s NotifyIconObject property:

private NotifyIconChart notifyChart = new NotifyIconChart();
NotifyIcon notifyIcon = new NotifyIcon();
notifyChart.NotifyIconObject = notifyIcon;

Now set values. There are two properties that you can use: Value1 and Value2. The first bar, single bar or the pie will be drawn using the first value. The Value2 is used only when drawing the second bar. The values take integers between 0 and 100.

notifyChart.Value1 = 75;
notifyChart.Value2 = 43;

How does it work?

The NotifyIconChart uses a NotifyIcon object, which is responsible for displaying the chart. It gets only System.Drawing.Icon. That mean that NotifyIconChart has to create the icon. The .Net framework uses GDI+ for drawing. The Graphics object can’t draw on an Icon, but it can draw on a Bitmap. The NotifyIconChart draws on a bitmap (size 16x16) bars or a pie. It uses Graphics’ functions FillRectangle and FillPie. At the end it convert the Bitmap to an Icon and pass it to the NotifyIcon object:

// Convert Bitmap to an Icon
Icon icon = Icon.FromHandle(bitmap.GetHicon());
notifyIcon.Icon = icon;

Changing type of the chart

As I said, there are three types of charts provided by NotifyIconChart: single bar, two bars, and pie. To change the type, just change the ChartType value:

notifyChart.ChartType = NotifyIconChart.ChartTypeEnum.singleBar; // Draw one only bar
notifyChart.ChartType = NotifyIconChart.ChartTypeEnum.twoBars; // Draw two bars
notifyChart.ChartType = NotifyIconChart.ChartTypeEnum.pie; // Draw pie chart

Colors

There are four properties that you can use to change colors:

Color1 and Color2 are responsible for the bars’ colors. The pie will be drawn using Color1.

FrameColor is responsible for frames around bars and pie.

BackgroundColor is the color of the background. NotifyIconChart draws rectangular background when it draws bars, and circular when it draws pie.

If you don’t want the NotifyIconChart to draw any of these element’s set it’s value to Color.Transparent.

notifyChart.FrameColor = Color.Black;
notifyChart.Color1 = Color.Yellow;

Conclusion

System Tray isn’t the best place for charts, because it is rather small. But sometimes chart can be very useful there. Thanks to GDI+ functions like anti-aliasing, even a pie chart looks great. If you want any other type of chart in your System Tray, just give me a sign.

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

Maciej Pirog

Web Developer

Poland Poland

Member
I've been programming since I was really young. Started with HTML and Basic, looked at Pascal and Java, keen on Visual Basic and Visual C++, thinking about .NET and C#.

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
General16 bars one for each vertical row in the icon PinmemberMember #27709777:01 10 Jan '07  
GeneralnotifyIcon.Visible = true; PinmemberToothRobber5:14 9 Jan '07  
GeneralTidying up PinmemberDrew Noakes7:18 7 Apr '05  
GeneralRe: Tidying up PinmemberdzCepheus12:48 4 Sep '05  
GeneralNice Pinmemberngna21:35 19 Sep '04  
GeneralRe: Nice PinmemberMaciej Pirog8:51 1 Oct '04  
GeneralCopy cursor into Bitmap - C# Pinmemberjayakarthikeyan2:45 17 Jun '04  
GeneralCopy cursor into Bitmap Pinmemberjayakarthikeyan2:40 17 Jun '04  
GeneralThis is excellent! PinmemberCavaradossi1:44 21 Aug '03  
GeneralRe: This is excellent! PinmemberMaciej Pirog3:36 21 Aug '03  
GeneralAlles klar Pinsusslukasz stypka3:16 4 Mar '03  
GeneralUse composition to create NotifyIcon. PinmemberPeter Rilling5:06 25 Jan '03  
GeneralRe: Use composition to create NotifyIcon. PinmemberMaciej Pirog0:37 2 Feb '03  
GeneralScrolling Chart like DuMeter PinsussAnonymous11:13 9 Nov '02  
GeneralGetHicon - A general error occurred in GDI+ PinmemberIngram Leedy22:03 18 Oct '02  
GeneralRe: GetHicon - A general error occurred in GDI+ PinmemberMaciej Pirog6:42 19 Oct '02  
GeneralRe: GetHicon - A general error occurred in GDI+ PinmemberNewtonTroy10:08 3 Nov '03  
GeneralRe: GetHicon - A general error occurred in GDI+ Pinmembermrblueguy1:14 11 Nov '03  
GeneralRe: GetHicon - A general error occurred in GDI+ Pinmemberparagvt14:01 27 Jun '05  
GeneralRe: GetHicon - A general error occurred in GDI+ Pinmemberorumcektr5:26 2 Aug '06  
GeneralNice! PinmemberTim Hodgson4:55 3 Sep '02  
GeneralRe: Nice! PinmemberMaciej Pirog8:26 3 Sep '02  
Generalcześć PinsussARTUR PIRÓG3:12 18 Oct '03  

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.120209.1 | Last Updated 1 Sep 2002
Article Copyright 2002 by Maciej Pirog
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid