Legend bubble size

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Bernhard Hard
Newbie
Newbie
Posts: 9
Joined: Fri Mar 14, 2008 12:00 am

Legend bubble size

Post by Bernhard Hard » Tue Mar 17, 2009 8:12 am

Hi support team,

we have several bubble series in our chart, but the legend's bubble size is smaller than the bubbles in the Chart.

What can we do?

Thanks in advance,
Chris

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Post by Sandra » Tue Mar 17, 2009 9:43 am

Hello Chris,
we have several bubble series in our chart, but the legend's bubble size is smaller than the bubbles in the Chart.
What can we do?
When you use bubble series, the radius of bubble can be very large, very small, or differents intermediate sizes, for this, not much sense that bubble of legend have same size bubble of chart, but if you want change the size of symbols of legend you could recomen using next code for example:

Code: Select all

            tChart1.Legend.Symbol.Width = 50;

Thanks,
Best Regards,
Sandra Pazos / 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

Bernhard Hard
Newbie
Newbie
Posts: 9
Joined: Fri Mar 14, 2008 12:00 am

Post by Bernhard Hard » Tue Mar 17, 2009 2:35 pm

Yes, I tried this - but the bubbles are squeezed. Only one value results in a round bubble - but this bubble is too small, in our case.
I also tried the Continous and Squared properties, but the bubbles are also squeezed or resized each one in a different way.

Is there a possibility to have a bigger legend bubble without changing the legend font size?

Thanks,
Chris

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Post by Sandra » Wed Mar 18, 2009 1:24 pm

Hi Chris,

I comented some thinks,

First:
We found a bug with bubbles smashed effect, and is added to the list of Bug Reportnumber with number [TF02013970].
Is there a possibility to have a bigger legend bubble without changing the legend font size?
You could change the size of legend using next code for example:

Code: Select all

            tChart1.Legend.AutoSize = false;
            tChart1.Legend.Width = 200;
            tChart1.Legend.Height = 200;
            tChart1.Legend.Symbol.Width = 200; 
Also, If you prefer, you can change image of legend as explained in Demo of TeeChart .NET All Features\Welcome!\Miscellaneous\Legend\OnDrawSymbol Event


Thanks,
Best Regards,
Sandra Pazos / 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