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
Draw concentric circles
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Chris,
Yes, you can use Bubble series like this:
Hope this helps!
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);
}
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |