/ui5-chart-pdf-download

Download UI5/FIORI Vizframe charts to pdf

Primary LanguageJavaScript

SAP UI5/FIORI chart download to PDF

This sample code provides option to download SAP UI5/FIORI vizframe charts to PDF using third party libraries.

Alt text(missing Demo)

As part of the process we will export UI5 chart to SVG using UI5 library predefined method exportToSVGString() then convert SVG to PNG/JPEG using thirdparty libraries and finally export PNG/JPEG format to PDF

Third party libraries

  • canvg : Convert SVG to PNG/JPEG

  • rgbcolor: Dependent library for canvg

  • stackblur: Dependent library for canvg (optional)

  • jsPDF: To create PDF using PNG/JPEG format

Note:

jsPDF library is modified so that it is avilable in global window object. This is done to ensure that this library works correctly with SAP UI5 framework (SAP UI5 framework has its own AMD syntax). So copy jsPDF library from this project folder

Below line is added in jsPDF library

global.jsPDF = factory(); // -->> Added by Srikanth for SAP UI5

SAP UI5 Vizframe library bug fix

Error:

Error Image Alt text

This error is caused by UI5 library when genearting the SVG string for chart legend using method exportToSVGString(). Below are the details of the bug

Bug:

One of the generated SVG attribute value is like this

<g class="v-legend-element v-legend-item" transform="translate (-5,0)">
<!--attribute value "translate (-5,0)" should not contain spaces -->

Solution:

After getting the SVG string replace spaces for the attribute

<svgString value>.replace(/translate /gm, "translate");