I want to increase line space between 2 lines in pdfmake document.. How to do this?
+1
Using the lineHeight, example:
var dd = {
content: [
{
lineHeight: 2,
text:'Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines. Another paragraph, this time a little bit longer to make sure, this line will be divided into at least two lines.'
}
]
}
Most helpful comment
Using the
lineHeight, example: