تصدير المخطط إلى SVG مع سمة viewBox
Contents
[
Hide
]
بشكل افتراضي ، عندما يتم تصدير المخطط إلى تنسيق SVG ، فإن ملفviewBox السمة غير مدرجة في XML الخاص بها. ومع ذلك ، يوفر Aspose.CellsImageOrPrintOptions.SVGFitToViewPort الخاصية التي عند التعيين علىحقيقي يقوم بتصدير المخطط إلى SVG بسمة viewBox.
تصدير المخطط إلى SVG مع سمة viewBox
يقوم نموذج التعليمات البرمجية التالي بتصدير المخطط إلى تنسيق SVG بسمة viewBox.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object from source file | |
Workbook workbook = new Workbook(dataDir + "SampleChartBook.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access first chart inside the worksheet | |
Aspose.Cells.Charts.Chart chart = worksheet.Charts[0]; | |
// Set image or print options with SVGFitToViewPort true | |
Aspose.Cells.Rendering.ImageOrPrintOptions opts = new Aspose.Cells.Rendering.ImageOrPrintOptions(); | |
opts.ImageType = ImageType.Svg; | |
opts.SVGFitToViewPort = true; | |
// Save the chart to svg format | |
chart.ToImage(dataDir + "Image_out.svg", opts); |
إذا قمت بفتح SVG الرسم البياني في المفكرة ، فستجد ملفviewBoxسمة مشابهة لهذا.
<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>