Hallo, The following MrRio/jsPDF functions are not supported in yWork-jspdf Fork : getLineHeightFactor() : [http://raw.githack.com/MrRio/jsPDF/master/docs/jsPDF.html#setLineHeightFactor](http://raw.githack.com/MrRio/jsPDF/master/docs/jsPDF.html#setLineHeightFactor) setLineDash() : [https://github.com/MrRio/jsPDF/blob/master/examples/js/lines.js#LC36](https://github.com/MrRio/jsPDF/blob/master/examples/js/lines.js#LC36) trying to use them : ```html <html> <script src="../node_modules/jspdf-yworks/dist/jspdf.min.js"></script> <body> <script> const pdf = new jsPDF("l", "mm", "a3"); pdf.setLineDash(); pdf.getLineHeightFactor(); </script> </body> </html> ``` throws Errors: Uncaught TypeError: pdf.getLineHeightFactor is not a function Uncaught TypeError: pdf.setLineDash is not a function Is the support of these function planned ?
Hallo,
The following MrRio/jsPDF functions are not supported in yWork-jspdf Fork :
getLineHeightFactor() :
http://raw.githack.com/MrRio/jsPDF/master/docs/jsPDF.html#setLineHeightFactor
setLineDash() :
https://github.com/MrRio/jsPDF/blob/master/examples/js/lines.js#LC36
trying to use them :
throws Errors:
Uncaught TypeError: pdf.getLineHeightFactor is not a function
Uncaught TypeError: pdf.setLineDash is not a function
Is the support of these function planned ?