Exportar Gráfico a SVG con atributo viewBox usando Node.js a través de C++
Contents
[
Hide
]
De forma predeterminada, cuando el gráfico se exporta al formato SVG, el atributo viewBox no se incluye en su XML. Sin embargo, Aspose.Cells proporciona la propiedad ImageOrPrintOptions.getSVGFitToViewPort() que, cuando se establece en true, exporta el gráfico a SVG con el atributo viewBox.
Exportar gráfico a SVG con el atributo viewBox
El siguiente código de ejemplo exporta el gráfico al formato SVG con el atributo viewBox.
const path = require("path");
const AsposeCells = require("aspose.cells.node");
// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
// Create workbook object from source file
const workbook = new AsposeCells.Workbook(path.join(dataDir, "SampleChartBook.xlsx"));
// Access first worksheet
const worksheet = workbook.getWorksheets().get(0);
// Access first chart inside the worksheet
const chart = worksheet.getCharts().get(0);
// Set image or print options with SVGFitToViewPort true
const opts = new AsposeCells.ImageOrPrintOptions();
opts.setImageType(AsposeCells.ImageType.Svg);
opts.setSVGFitToViewPort(true);
// Save the chart to svg format
chart.toImage(path.join(dataDir, "Image_out.svg"), opts);
Si abres el SVG del gráfico en el bloc de notas, encontrarás el atributo viewBox similar a este:
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
<span class="n">width</span><span class="o">=</span><span class="s">"100%"</span> <span class="n">height</span><span class="o">=</span><span class="s">"100%"</span>
<span class="n">viewBox</span><span class="o">=</span><span class="s">"0 0 480 288"</span><span class="o">></span></code></pre></div>