Click here to Skip to main content
15,885,835 members
Articles / Desktop Programming / WPF

OpenWPFChart: Assembling Charts from Components. Part II - Controls

Rate me:
Please Sign up or sign in to vote.
4.90/5 (14 votes)
26 Mar 2009CPOL10 min read 69.7K   2.2K   52  
Chart controls composed from Chart Parts
// <copyright file="ChartDateTimeScaleDataView.cs" company="Oleg V. Polikarpotchkin">
// Copyright © 2008-2009 Oleg V. Polikarpotchkin. All Right Reserved
// </copyright>
// <author>Oleg V. Polikarpotchkin</author>
// <email>ov-p@yandex.ru</email>
// <date>2009-02-18</date>
// <summary>OpenWPFChart library. ItemPropertiesDialog ChartDateTimeScale Data View class.</summary>
// <revision>$Id: ChartDateTimeScaleDataView.cs 18093 2009-03-16 04:15:06Z unknown $</revision>

using System;
using OpenWPFChart.Parts;

namespace OpenWPFChart.Helpers
{
	/// <summary>
	/// ItemPropertiesDialog ChartDateTimeScale Data View class.
	/// </summary>
	public class ChartDateTimeScaleDataView : ChartScaleDataView
	{
		public ChartDateTimeScaleDataView(ChartDateTimeScale scale) : base(scale.Scale) 
		{
			start = Convert.ToDateTime(scale.Start);
			stop = Convert.ToDateTime(scale.Stop);
		}

		public ChartScaleVerieties ScaleVeriety
		{
			get { return ChartScaleVerieties.DateTime; }
		}
		public override ChartScaleVerieties GetVeriety() { return ChartScaleVerieties.DateTime; }

		DateTime start;
		public DateTime Start
		{
			get { return start; }
			set
			{
				if (start != value)
				{
					start = value;
					Notify("Start");
				}
			}
		}
		public override object GetStart() { return Start; }

		DateTime stop;
		public DateTime Stop
		{
			get { return stop; }
			set
			{
				if (stop != value)
				{
					stop = value;
					Notify("Stop");
				}
			}
		}
		public override object GetStop() { return Stop; }

		protected override string GetDataErrorInfo(string columnName)
		{
			switch(columnName)
			{
				case "Start":
				case "Stop":
					if (Start == Stop)
						return "Start and Stop must not be equal";
					break;
			}
			return base.GetDataErrorInfo(columnName);
		}
	}
}

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
Team Leader
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions