OBJECT
PdfOptions
link GraphQL Schema definition
- type PdfOptions {
- # Width of the PDF page, in inches.
- : Float!
- # Height of the PDF page, in inches.
- : Float!
- # When true, the PDF is laid out in landscape orientation; otherwise portrait.
- : Boolean!
- # Scaling factor applied when rendering the report into the PDF, where 1.0 is full
- # size.
- : Float!
- # When true, page numbers are printed on the generated PDF.
- : Boolean!
- # Which parts of the report to include in the PDF: All content, only Charts, or
- # only the Table.
- : ReportContent!
- }