Exploded slice appears wrong
-
- Newbie
- Posts: 5
- Joined: Tue Apr 08, 2003 4:00 am
- Location: ak@priso.net
- Contact:
Exploded slice appears wrong
Hi!
I have use a pie chart in my program, and the exploded slice appears overlayed over the bigger slice in the chart:
see image:
Any Suggestions?
Thanks,
Tony
I have use a pie chart in my program, and the exploded slice appears overlayed over the bigger slice in the chart:
see image:
Any Suggestions?
Thanks,
Tony
Last edited by Tony on Thu Feb 01, 2007 8:39 am, edited 1 time in total.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tony,
Which TeeChart version are you using?
It works fine here using latest release (Build 1.1.1937.15964) from April 2005 available at our Customer Download Area.
Which TeeChart version are you using?
It works fine here using latest release (Build 1.1.1937.15964) from April 2005 available at our Customer Download Area.
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: 5
- Joined: Tue Apr 08, 2003 4:00 am
- Location: ak@priso.net
- Contact:
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tony,
Sorry Tony, yes, you are right. We are doing some changes to this version and hasn't been posted yet. However it will be shortly.
Sorry Tony, yes, you are right. We are doing some changes to this version and hasn't been posted yet. However it will be shortly.
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: 5
- Joined: Tue Apr 08, 2003 4:00 am
- Location: ak@priso.net
- Contact:
Exploded Slice appears wrong
Hi,
this problem still occurs in Version 1.1.2004.16592 !!!
Is it possible to fix that?
greetings,
Tony
this problem still occurs in Version 1.1.2004.16592 !!!
Is it possible to fix that?
greetings,
Tony
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tony,
Please notice the version you mention is from June 2005, the latest version available is Build 1.1.2531.28391 from December 2006. Can you please test if this version works fine at your end?
Sorry but I can't remember what the issue consisted on. If the problem persists could you please send us a simple example project we can run "as-is" or let us know the steps we should follow to reproduce the issue here?
You can post your files either at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Please notice the version you mention is from June 2005, the latest version available is Build 1.1.2531.28391 from December 2006. Can you please test if this version works fine at your end?
Sorry but I can't remember what the issue consisted on. If the problem persists could you please send us a simple example project we can run "as-is" or let us know the steps we should follow to reproduce the issue here?
You can post your files either at news://www.steema.net/steema.public.attachments newsgroup or at our 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 |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 5
- Joined: Tue Apr 08, 2003 4:00 am
- Location: ak@priso.net
- Contact:
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Tony and Richard,
I haven't found why this issue remained unanswered but I've been able to reproduce it now using this code:
So I've added it (TF02013468) to the defect list to be fixed for next releases.
I haven't found why this issue remained unanswered but I've been able to reproduce it now using this code:
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1.Chart);
//pie1.YValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending;
pie1.Add(4.7, "test value 2");
pie1.Add(95.3, "test value 1");
//pie1.YValues.Sort();
}
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello,
We have been investigating TF02013468. To solve this an important redesign of how pie series are plotted is required as each slice should be broken into the polygons which form it and check the order in which the polygons should be plotted.
We will consider a solution to this for future versions. In the meantime, the only solution available is using OpenGL, for example:
We have been investigating TF02013468. To solve this an important redesign of how pie series are plotted is required as each slice should be broken into the polygons which form it and check the order in which the polygons should be plotted.
We will consider a solution to this for future versions. In the meantime, the only solution available is using OpenGL, for example:
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
tChart1.Legend.Visible = false;
Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1.Chart);
//pie1.YValues.Order = Steema.TeeChart.Styles.ValueListOrder.Descending;
pie1.Add(5, "test value 2");
pie1.Add(95, "test value 1");
//pie1.YValues.Sort();
pie1.ExplodeBiggest = 30;
Steema.TeeChart.Drawing.GL.TeeOpenGL teeOpenGL1 = new Steema.TeeChart.Drawing.GL.TeeOpenGL(tChart1.Chart);
teeOpenGL1.Active = true;
}
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 |