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"

L for landscape, P for portrait and A for auto-detect. Auto-detect sets landscape, the default PowerPoint orientation.

properties?: DocProperties

Properties of the document. In case of multiple composition, only properties specified in the composition output are taken and the ones specified in each output item are ignored.

resizeType?: "autofit"

The type of resize to be performed. Autofit automatically fits the visualization, sheet or story into the output size (i.e. Widescreen, OnScreen etc.).

size?: "Widescreen" | "OnScreen" | "OnScreen16x9" | "OnScreen16x10"

Size of the PowerPoint slide:

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