Export Chart to SVG with viewBox attribute
Contents
[
Hide
]
By default, when the chart is exported to SVG format, the viewBox attribute is not included in its XML. However, Aspose.Cells provides ImageOrPrintOptions.SVGFitToViewPort property which when set to true exports the chart to SVG with viewBox attribute.
Export Chart to SVG with viewBox attribute
The following sample code exports the chart to SVG format with the viewBox attribute.
If you open the chart’s SVG in notepad, you will find the viewBox attribute similar to this.
<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>