Hi,
I have a box plot with 6 boxes. Each box has roughly 50K outlier data points (and 500K data points in total, per box). Because of the amount of data I'm using UseCustomValues=true.
The plot displays and exports fine (though it's slow). However, when I try to print it, it either takes forever to generate the preview, or throws an exception.
I have posted the .ten file on my personal web site: click here to download.
Print doesn't work with big datasets
-
- Newbie
- Posts: 64
- Joined: Fri Jun 16, 2006 12:00 am
Print doesn't work with big datasets
Best,
Michal Blazejczyk
Lead Programmer
Genome Quebec
Michal Blazejczyk
Lead Programmer
Genome Quebec
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Michal,
I could reproduce the problem here and have seen that is because of the box1.ExtrOut.Style property. By default it is a diagonal cross and what fails is the GDI+ method drawing the line. Using other styles not drawing lines works fine, for example:
Anyway, I added this issue (TF02011870) to our defect list to be fixed for future releases.
I could reproduce the problem here and have seen that is because of the box1.ExtrOut.Style property. By default it is a diagonal cross and what fails is the GDI+ method drawing the line. Using other styles not drawing lines works fine, for example:
Code: Select all
private void Form1_Load(object sender, EventArgs e)
{
tChart1.Import.Template.Load("TeeChartBigBoxPlotPrintFailure.ten");
//Workaround
for (int i = 0; i < tChart1.Series.Count; i++)
{
Steema.TeeChart.Styles.Box box1 = tChart1[i] as Steema.TeeChart.Styles.Box;
box1.ExtrOut.Style = Steema.TeeChart.Styles.PointerStyles.Circle;
}
//End Workaround
}
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 |