Pdfmake: Horizontal line?

Created on 15 Feb 2016  路  2Comments  路  Source: bpampuch/pdfmake

Hope it's ok to create an issue about this. I tried to search the documents but I might have missed how to create a horizontal line?

Most helpful comment

You only can solve this with a workaround.

  • use an Image containing a line
  • Create a table with layout headeronly you must define an empty body, otherwise the line would not appear:
var dd = {
    content: [
        {
                                  table : {
                                      headerRows : 1,
                                      widths: [200],
                                      body : [
                                              [''],
                                              ['']
                                              ]
                                  },
                                  layout : 'headerLineOnly'
                              }
            ]
}

The width defines the length of the line

Code tested in Playgorund.

All 2 comments

You only can solve this with a workaround.

  • use an Image containing a line
  • Create a table with layout headeronly you must define an empty body, otherwise the line would not appear:
var dd = {
    content: [
        {
                                  table : {
                                      headerRows : 1,
                                      widths: [200],
                                      body : [
                                              [''],
                                              ['']
                                              ]
                                  },
                                  layout : 'headerLineOnly'
                              }
            ]
}

The width defines the length of the line

Code tested in Playgorund.

Thanks! Works like a charm ;) Workaround works ;)

Was this page helpful?
0 / 5 - 0 ratings

Related issues

SummerSonnet picture SummerSonnet  路  3Comments

svenyonson picture svenyonson  路  3Comments

CharlyPoppins picture CharlyPoppins  路  3Comments

dmatesic picture dmatesic  路  3Comments

Christian24 picture Christian24  路  3Comments