Hi!
I’m trying to convert the xlsx file from the archive attached to html using the following code:
var input = @"[…]\charts.xlsx";
var targetFolder = @"[…]\output_21.2";
AsposeLicenser.LoadLicense();
var targetPath = Path.Combine(targetFolder, "preview.html");
var options = new HtmlSaveOptions
{
ExportImagesAsBase64 = true,
ExportSingleTab = true,
IsExportComments = false,
ExportHiddenWorksheet = false,
HiddenRowDisplayType = HtmlHiddenRowDisplayType.Remove,
HiddenColDisplayType = HtmlHiddenColDisplayType.Remove,
ExportGridLines = true
};
using (var wb = new Workbook(input))
wb.Save(targetPath, options);
If I use version 20.12.0 the charts are placed correctly on the html page but if I use 21.1.0 or 21.2.0 the placement is incorrect (see the output folders from the archive attached). Is this a bug or am I missing something?
cells_20.12_vs_later.zip (59.5 KB)
Thanks,
Arnold