3d effects on charts

Hi

I would like to put a circular bevel 3d effect on a bubble chart. Is this possible in Aspose.Cells? I can't seem to find a reference to this

Many thanks

Chris

Hi,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Thank you for considering Aspose.

Well, I am afraid your desired feature is not supported at the moment. We have added your requested feature as “New Feature” in our internal issue tracking system with issue id CELLSNET-14182. We will look into the feasibility of the feature and get back to you soon.

Thank you & Best Regards,

Hi,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

Thank you for considering Aspose.

To further update you, we will start working on this feature soon and hopefully we will complete it in the month of March.

Thank You & Best Regards,

Hi,<o:p></o:p>

We have supported "3d effects on charts" feature. Please try the attached version.

Kindly consult the following code that puts a circular bevel 3d effect on a bubble chart:

Workbook book = new Workbook();
book.Open(infn);
Chart c = book.Worksheets[0].Charts[0];
ASeries ser = c.NSeries[0];
ShapeProperties spPr = ser.ShapeProperties;
Bevel bevel = spPr.Format3D.TopBevel;
bevel.Type = BevelPresetType.Circle;
bevel.Height = 6;
bevel.Width = 6;

book.Save(outfn);

Thank you