Hi,
Hi,
Thanks for your posting and using Aspose.Cells for .NET.
We were able to observe this issue using your source files and converting them from xlsx to xls format. Exploded pie charts become simple pie charts. We have logged this issue in our database. We will look into it and resolve this issue. Once, the issue is resolved or we have some other update for you, we will let you know asap.
This issue has been logged as CELLSNET-42011.
Many thanks.
Hi,
Please download and try our latest version/fix : Aspose.Cells for .NET v7.5.3.4
Let us know your feedback.
Thanks,
Hi,
Hi Alex,
Thanks for your feedback and using Aspose.Cells.
We were able to observe this issue. The colors of the pie chart get changed while converting the source file from xlsx to xls. We have reopened this issue and logged your comment. Once, it will be resolved or we have some other update for you, we will let you know asap.
Hi Shakeel,
Hi,
Thanks for using Aspose.Cells.
In the source file(.xlsx), we can’t read the colors of the slice of pie charts that are automatic and loaded by Excel dynamically. Please call chart.Calculate() before converting.
C#
for (int i = 0; i < book.Worksheets.Count; i++)
{
Worksheet sheet = book.Worksheets[i];
for (int j = 0; j < sheet.Charts.Count; j++)
{
Chart c = sheet.Charts[j];
c.Calculate();
}
}
… …
book.Save(…);
Hi,
Hi Alex,
Thanks for your posting and using Aspose.Cells.
It is good to know that your issue is resolved with above code change. Calculate method should not affect your application performance. If you still face performance issue, please let us know. We will look into it and help you asap.
The issues you have found earlier (filed as CELLSNET-42011) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.