Draw concentric circles

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Chris.CHWU
Newbie
Newbie
Posts: 57
Joined: Wed Jan 30, 2008 12:00 am

Draw concentric circles

Post by Chris.CHWU » Thu May 22, 2008 6:44 am

Hi there,

We want to make a concentric circles chart, so we are going to put bubbles sequentially by its size in the same position.
Those bubbles will show partially ,if they are near the margin of the TChart.
Any suggestions would be appreciated!

TeeChart version:3.5 .net version

Thanks

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 May 22, 2008 9:07 am

Hi Chris,

Yes, you can use Bubble series like this:

Code: Select all

			tChart1.Aspect.View3D = false;

			Steema.TeeChart.Styles.Bubble bubble1 = new Steema.TeeChart.Styles.Bubble(tChart1.Chart);

			for (int i = 10; i > 0; i--)
			{
				bubble1.Add(0, 0, i);
			}
Hope this helps!
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

Post Reply