When I convert the chart to image shape in the excel sheet chart and the effect is not the same.
I attach zip file your reference.
PieChart.zip (279.5 KB)
You have posted the same issue (in your other thread) multiple times which is not needed. We already logged the issue (Ticket ID: “CELLSNET-57705”). The issue is 3D effect would be lost when converting Pie chart with 3D effects to image.
Moreover, we investigated your code snippet and issue in details. We found that you achieved the 3D effect by setting the “bevel” property in your sample code. We are sorry but currently, bevel property is supported for reading, writing, setting, and it will also work when saving to Excel file. However, when saving the chart as an image, the bevel effect is not supported because it involves some 3D rendering.
Currently, the simulated 3D effect that can be supported when saving as an image is of the “3D pie chart” type, see the sample line of code:
worksheet.Charts.Add(ChartType.Pie3D, 5, 1, 25, 8);
Please check the following code:
3dPie.zip (1.5 KB)