Hi,
Thanks for your interest in Aspose.Cells.
Please provide us your source (Mappe2.xls) file, so that we could run your code and investigate this issue.
Here is the excel source
Hi,
Hi,
Workbook wb = new Workbook(@“C:\temp\Mappe2.xls”, new LoadOptions(LoadFormat.Excel97To2003));
Worksheet sheet1 = wb.Worksheets[1];
PageSetup pgs = sheet1.PageSetup;
pgs.Zoom = 100;
pgs.Order = PrintOrderType.OverThenDown;
pgs.Orientation = PageOrientationType.Landscape;
pgs.PaperSize = PaperSizeType.PaperA4;
pgs.LeftMargin = 1.5;
pgs.RightMargin = 1.5;
pgs.BottomMargin = 1.0;
pgs.TopMargin = 1.0;
pgs.FooterMargin = 0.0;
pgs.HeaderMargin = 0.0;
//Apply different Image / Print options.
Aspose.Cells.Rendering.ImageOrPrintOptions options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.PrintingPage = PrintingPageType.IgnoreBlank;
SheetRender sr = new SheetRender(sheet1, options);
System.Diagnostics.Stopwatch stopWatch = new System.Diagnostics.Stopwatch();
stopWatch.Start();
//Print the sheet.
sr.ToPrinter(“Microsoft XPS Document Writer”);
stopWatch.Stop();
// Get the elapsed time as a TimeSpan value.
TimeSpan ts = stopWatch.Elapsed;
Console.WriteLine(ts);
Console.ReadKey();
Hi,
Hi,
- Image is stretched so the radar charts seems to be slightly oval.
- See snapshot chartAxis.png. The axis for all the charts are different that orignal Excel File or Excel generated XPS file.
- On page two of Excel.xps file, there are four charts that are missing in Aspose.xps
Hi,
Hi,
We are sorry for inconvenience. We are still working on your issue. After some investigation, we found there are still issues, so we could not provide you a fix. Once, these issues will be resolved. We will again post here.
Hi,
The issues you have found earlier (filed as 28414) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.