Spire.XLS for JavaScript 16.4.0 supports converting Excel to SVG
2026-04-10 06:44:43
We're pleased to announce the release of Spire.XLS for JavaScript 16.4.0. This version supports converting Excel and ChartSheet to SVG, and supports configuring OnlyCopyFormulaValue when cloning cell ranges to copy formula values only. More details are listed below. Here is a list of changes made in this release Category ID Description New Feature SPIREXLS-5621 Supports converting Excel to SVG. New Feature SPIREXLS-5622 Supports converting ChartSheet to SVG. New Feature SPIREXLS-5623 Supports configuring OnlyCopyFormulaValue when cloning cell ranges to copy formula values only. Click the link below to download Spire.XLS for JavaScript 16.4.0: https://www.e-iceblue.com/Download/Spire-XLS-JavaScript.html
Spire.XLS for JavaScript 15.5.0 supports multiple new features
2025-05-15 05:38:42
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,…