OBJECT

PdfOptions

link GraphQL Schema definition

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