Smithchart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
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 Sep 24, 2008 1:22 pm

Hi Jan,

Could you please post the TeeChart assembly you are using at the upload page?

Thanks in advance.
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

Lars Iversen
Newbie
Newbie
Posts: 61
Joined: Wed Jun 22, 2005 4:00 am
Location: cph

Post by Lars Iversen » Thu Sep 25, 2008 12:45 pm

Hi Narcís

Lars Iversen here. I'm working together with Jan
As your graph is very different from Jan and your legend gives very large numbers I suspect the reason for you having different graphs could be regional settings. If you go to control panel --> Regional and Language Option --> Cutomize and set your decimal symbol to . (period) instead of , (comma) do you then get the graph that looks like the one Jan gets?

BR Lars Iversen

Jan Madsen
Newbie
Newbie
Posts: 21
Joined: Wed Jun 22, 2005 4:00 am

Contour

Post by Jan Madsen » Fri Sep 26, 2008 6:00 am

Hi

I'm not sure what you want me to upload. Is is just my .dll file or what?

/Jan

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

Post by Narcís » Fri Sep 26, 2008 10:40 am

Hello Jan and Lars,

Setting Regional Options as Lars suggested let us get the same chart as you. We think this is a bug and added it (TF02013418) to the defect list to be fixed for future releases.
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

Lars Iversen
Newbie
Newbie
Posts: 61
Joined: Wed Jun 22, 2005 4:00 am
Location: cph

Post by Lars Iversen » Fri Sep 26, 2008 1:01 pm

Hi Narcís

Do you have any ideas for a workaraound?

Thanks
Lars Iversen

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

Post by Narcís » Fri Sep 26, 2008 1:06 pm

Hi Lars,

I tried adding a null point providing resistance and reactance values and setting its color to Color.Transparent but didn't help.

The only solution I can think of is using 2 series. When a null point appears you start populating a new series so that they are not joined.
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

Lars Iversen
Newbie
Newbie
Posts: 61
Joined: Wed Jun 22, 2005 4:00 am
Location: cph

Post by Lars Iversen » Fri Sep 26, 2008 1:07 pm

Can i then hide one of the series from the Legend?

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

Post by Narcís » Fri Sep 26, 2008 1:28 pm

Hi Lars,

Sure, you can use ShowInLegend property, for example:

Code: Select all

			for (int i = 0; i < tChart1.Series.Count; i++)
			{
				tChart1[i].ShowInLegend = (i == 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

Post Reply