@captorab/openseries-ts - v1.0.0
    Preparing search index...

    Interface PlotSeriesOptions

    interface PlotSeriesOptions {
        addLogo?: boolean;
        asDrawdown?: boolean;
        autoOpen?: boolean;
        filename?: string;
        logoUrl?: string;
        title?: string;
    }
    Index

    Properties

    addLogo?: boolean

    If true, show logo in upper left. Default: true.

    asDrawdown?: boolean

    If true, data is drawdown series (0 to negative decimals). Plot raw values * 100 as %, skip cumulative conversion.

    autoOpen?: boolean

    If true, open the HTML file in the default browser. Default: true.

    filename?: string

    Output file path. Default: ~/Documents/plot.html (or ~/ if Documents missing).

    logoUrl?: string

    Logo URL (e.g. company logo). Shown in upper left when addLogo is true.

    title?: string

    Optional title above the chart.