Hello,
I've faced with chart formatting issue (Aspose.Cells 7.0.3).
I created simple chart (lines with markers) with nonintegral values as data source (like 1385.45).
The format defined zero decimal places for the data labels. Then I just opened this XLSX document using Aspose and saved it to memory stream and then to file:
var xlsWorkbook = new Workbook(dataStream);
xlsWorkbook.Worksheets.ActiveSheetIndex = requiredSheetIndex;
xlsWorkbook.Settings.CalcMode = CalcModeType.Manual;
...
xlsWorkbook.Save(memoryStream, saveFormat);
...
The resulted document is not completely similar to the initial one. There are fractional parts of the numbers in the chart data labels. Could you please look into the problem. Used Excel files are attached.
Thanks in advance,
Andrey