Created Unassigned: Date Axis [14952]
I believe there currently is only support for valAx type. It'd be great to have support for dateAx so access to properties such as basetimeunit are available. <c:dateAx> <c:axId...
View ArticleCreated Unassigned: Units of Measure [14953]
Hi everybody!! I'm trying to find out what unit of measure is used for set the witdh column and heigth row in EPPlus, i need to set the width in 5cm and the row in 2cm, but i don't know how to assign...
View ArticleCreated Unassigned: insert image into excel [14954]
atiris has a nice solution which improves the way epplus inserts images in an excel sheet:http://stackoverflow.com/a/21776634/169714
View ArticleCommented Unassigned: Units of Measure [14953]
Hi everybody!! I'm trying to find out what unit of measure is used for set the witdh column and heigth row in EPPlus, i need to set the width in 5cm and the row in 2cm, but i don't know how to assign...
View ArticleCreated Unassigned: Ascii value "Unit separator" problem [14955]
Hai,I am using latest EPPlus dll..I am having issue in showing exported data in Excel fileI have a data contains ASCII characters, it contains "Unit separator" when i export to Excel file, its...
View ArticleCommented Unassigned: Ascii value "Unit separator" problem [14955]
Hai,I am using latest EPPlus dll..I am having issue in showing exported data in Excel fileI have a data contains ASCII characters, it contains "Unit separator" when i export to Excel file, its...
View ArticleCommented Issue: Not Saving [13411]
FileStream fs = null;ExcelPackage pck = null;ExcelWorksheet ws = null;fs = new FileStream("FILE_PATH", FileMode.Open, FileAccess.ReadWrite);pck = new ExcelPackage(fs);//ExcelWorksheet indexes are not...
View ArticleCommented Issue: Indexing a cell in an ExcelRange modifies the ExcelRange...
I create a cell range from an ExcelWorkSheet object, then reference a cell in that range.```var range = sheet.Cells[1, 1, 5, 5];var a1 = range.Address;var c = range['B2'];var a2 =...
View ArticleCommented Issue: Indexing a cell in an ExcelRange modifies the ExcelRange...
I create a cell range from an ExcelWorkSheet object, then reference a cell in that range.```var range = sheet.Cells[1, 1, 5, 5];var a1 = range.Address;var c = range['B2'];var a2 =...
View ArticleCommented Issue: System.InvalidOperationException saving document with cloned...
EPPlus is working fantastically for my project, except that I get an exception when saving a document that contains a cloned sheet with images.If I leave the 'template' sheet in the document then it...
View ArticleCommented Issue: Using EPPlus to create Excel spreasheets [14751]
Hello, working in asp.net C#...initially i fell into the problem with the Excel.Interop not being able to open excel on Host pcìs due to the Microsoft limitations. So i decided to try EPPlus to get...
View ArticleCreated Unassigned: Memory isn't released [14956]
Hi,I have to generate large (250.000 rows and more) Excel files. It works well, but when I Dispose() The ExcelPackage at the end the memory isn't released. I checked my code and I can't find a "stray"...
View ArticleCreated Unassigned: Chart Axis Crosses and CrossBetween bugs [14957]
Creating a chart with x-axis using Cross or CrossBetween options is inserting invalid values in the xml, and Excel can't parse the chart when opening the file.Example:<c:crossBetween...
View ArticleCreated Unassigned: RepeatColumns and RepeatRows [14958]
This Test fails, but should not as I think:```[TestMethod]public void TestRepeatRowsAndColumns(){ var p = new ExcelPackage(); var w = p.Workbook.Worksheets.Add("RepeatRowsAndColumnsTest");...
View ArticleCommented Issue: ExcelWorksheet.GetWorkSheetXml returns invalid XML [14788]
A try to open an XLSX file created by a 3rd party application, but reading the p.Workbook.Worksheets property fails with the following exception:System.Xml.XmlException: Unexpected XML declaration. The...
View ArticleCreated Unassigned: Error copying cell number formats when copying worksheet...
Cell styles are corrupted when copying worksheet to another workbook if the worksheet copied contains cells with different styles but the same custom number format.Example attached.
View ArticleEdited Unassigned: Error copying cell styles when copying worksheet to...
Cell styles are corrupted when copying worksheet to another workbook if the worksheet being copied contains cells with different styles but the same custom number format.Example attached.
View ArticleCommented Unassigned: RepeatColumns and RepeatRows [14958]
This Test fails, but should not as I think:```[TestMethod]public void TestRepeatRowsAndColumns(){ var p = new ExcelPackage(); var w = p.Workbook.Worksheets.Add("RepeatRowsAndColumnsTest");...
View ArticleCommented Issue: Inserting Row doesn't update Addresses of NamedRanges [13628]
When you insert a row in Excel, named ranges that are in rows 'below' the inserted row get shifted appropriately. This doesn't seem to be the behavior in EPPlus. Shouldn't it be?In the meantime, I'm...
View ArticleCommented Unassigned: Repaired Records: Worksheet properties from...
When I create spreadsheet with many worksheets via my site using EPPlus, I get the following error:Excel found unreadable content in ViewData2023_all.xlsx Do you want to recover the contents of this...
View Article