Hi Jan,
Could you please post the TeeChart assembly you are using at the upload page?
Thanks in advance.
Smithchart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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 |
-
- Newbie
- Posts: 61
- Joined: Wed Jun 22, 2005 4:00 am
- Location: cph
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
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
-
- Newbie
- Posts: 21
- Joined: Wed Jun 22, 2005 4:00 am
Contour
Hi
I'm not sure what you want me to upload. Is is just my .dll file or what?
/Jan
I'm not sure what you want me to upload. Is is just my .dll file or what?
/Jan
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 61
- Joined: Wed Jun 22, 2005 4:00 am
- Location: cph
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 61
- Joined: Wed Jun 22, 2005 4:00 am
- Location: cph
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lars,
Sure, you can use ShowInLegend property, for example:
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 |
Instructions - How to post in this forum |