Spire.XLS for Javascript
We are excited to announce the release of Spire.XLS for JavaScript 15.5.0. This version adds 19 new features, such as grouping Shapes, enabling revision mode, and embedding images into cells. Moreover, it also upgrades SkiaSharp and enhances the conversion from Shape to images. More details are listed below. Here is a list of changes made in this release Category ID Description New feature - Supports 19 new features, including: Groupe Shapes. const workbook = wasmModule.Workbook.Create(); const sheet = workbook.Worksheets.get(0); const shape1 = sheet.PrstGeomShapes.AddPrstGeomShape(1, 3, 50, 50, spirexls.PrstGeomShapeType.RoundRect); const shape2 = sheet.PrstGeomShapes.AddPrstGeomShape(5, 3, 50, 50, spirexls.PrstGeomShapeType.Triangle); const groupShapeCollection = sheet.GroupShapeCollection; groupShapeCollection.Group([shape1,…
page