Page 1 of 1

Draw concentric circles

Posted: Thu May 22, 2008 6:44 am
by 14048132
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

Posted: Thu May 22, 2008 9:07 am
by narcis
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!