Radar Series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Luke
Newbie
Newbie
Posts: 68
Joined: Thu Oct 11, 2007 12:00 am

Radar Series

Post by Luke » Wed Nov 05, 2008 3:53 pm

If I add several values to a Radar series
eg
12
9
6
3

how do I get the 3 value to be shown? as the last valu always shows as zero. eg 3 value is shown with line going to 0 at 12.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed Nov 05, 2008 4:06 pm

Hi Luke,

You can solve this manually setting left axis minimum:

Code: Select all

		public Form1()
		{
			InitializeComponent();
			InitializeChart();
		}

		private void InitializeChart()
		{
			Steema.TeeChart.Styles.Radar radar1 = new Steema.TeeChart.Styles.Radar(tChart1.Chart);

			radar1.Add(12);
			radar1.Add(9);
			radar1.Add(6);
			radar1.Add(3);

			tChart1.Axes.Left.AutomaticMinimum = false;
			tChart1.Axes.Left.Minimum = 0;
		}
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Luke
Newbie
Newbie
Posts: 68
Joined: Thu Oct 11, 2007 12:00 am

Post by Luke » Wed Nov 05, 2008 4:13 pm

Ok Great, thx. How do I make the axis labels appear above the series, as they get blanked out by the series.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Nov 06, 2008 8:32 am

Hi Luke,

You can set axes DrawBehind to false:

Code: Select all

			tChart1.Axes.DrawBehind = false;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Luke
Newbie
Newbie
Posts: 68
Joined: Thu Oct 11, 2007 12:00 am

Post by Luke » Thu Nov 06, 2008 8:50 am

Thx

Post Reply