Type Alias PptxOutput

Output to be used to export a single visualization or a sheet as PowerPoint presentation.

type PptxOutput = {
    imageRenderingDpi?: number;
    orientation?: "L" | "P" | "A";
    properties?: DocProperties;
    resizeType?: "autofit";
    size?: "Widescreen" | "OnScreen" | "OnScreen16x9" | "OnScreen16x10";
}
Index

Properties

imageRenderingDpi?: number

This value is used for rendered images only, set to a default of 300 dpi.

orientation?: "L" | "P" | "A"
properties?: DocProperties
resizeType?: "autofit"
size?: "Widescreen" | "OnScreen" | "OnScreen16x9" | "OnScreen16x10"

Size of the PowerPoint slide:

  • Widescreen: 960x540
  • OnScreen: 720x540
  • OnScreen16x9: 720x405
  • OnScreen16x10: 720x450