Click here to Skip to main content
15,892,005 members
Articles / Desktop Programming / Windows Forms

Reputationator - CP Narcissists Rejoice! Part 1 of 4

Rate me:
Please Sign up or sign in to vote.
4.93/5 (35 votes)
30 Aug 2011CPOL22 min read 59K   882   41  
Keep more detailed track of your Codeproject reputation points.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using System.Windows.Forms.DataVisualization.Charting;

using ReputationLib;

namespace Reputationator
{
	//////////////////////////////////////////////////////////////////////////////////////
	/// <summary>
	/// represents a collection of reputation items
	/// </summary>
	public class RepChartCollection : List<RepChart>
	{
		//--------------------------------------------------------------------------------
		/// <summary>
		/// Constructor
		/// </summary>
		public RepChartCollection()
		{
			ChartDailyChanges dcChart = new ChartDailyChanges("Accumulated By Day");
			ChartCurrentTrack ctChart = new ChartCurrentTrack("Current Track");
			ChartOverall      ovChart = new ChartOverall     ("Overall Breakdown");
			ChartAccumulated  acChart = new ChartAccumulated ("Accumulated Since");
			this.Add(dcChart);
			this.Add(ctChart);
			this.Add(ovChart);
			this.Add(acChart);
		}

		//--------------------------------------------------------------------------------
		/// <summary>
		/// Retrieves the named chart (the names are used to create the charts in this 
		/// class' constructor).
		/// </summary>
		/// <param name="name"></param>
		/// <returns></returns>
		public RepChart GetChartByName(string name)
		{
			RepChart chart = (from item in this 
						 where item.ChartObj.Name == name
						 select item).FirstOrDefault();
			return chart;
		}

		//--------------------------------------------------------------------------------
		/// <summary>
		/// Makes the named chart visible, and hides all of the others.
		/// </summary>
		/// <param name="name"></param>
		public void ShowChart(string name)
		{
			foreach(RepChart chart in this)
			{
				chart.ChartObj.Visible = (chart.ChartObj.Name == name);
			}
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions