Interface ExportInitialData

interface ExportInitialData {
    data: string;
    fileNameSuffix?: string;
    fitHorizontally: boolean;
    fitVertically: boolean;
    inputType: "SVG" | "HTML";
    orientation: PaperOrientation;
    paperSize: {
        format: "a0" | "a1" | "a2" | "a3" | "a4" | "letter" | "autofit";
    };
    styles: string;
    title?: string;
    viewLegendData?: {
        html: string;
        styles: string;
    };
}

Properties

data: string
fileNameSuffix?: string
fitHorizontally: boolean
fitVertically: boolean
inputType: "SVG" | "HTML"
orientation: PaperOrientation
paperSize: {
    format: "a0" | "a1" | "a2" | "a3" | "a4" | "letter" | "autofit";
}

Type declaration

  • format: "a0" | "a1" | "a2" | "a3" | "a4" | "letter" | "autofit"
styles: string
title?: string
viewLegendData?: {
    html: string;
    styles: string;
}

Type declaration

  • html: string
  • styles: string

Generated using TypeDoc