fcharts-js - v0.3.0
    Preparing search index...

    Interface ScatterOptions

    interface ScatterOptions {
        embedData?: boolean;
        formatX?: (v: number) => string;
        hoverRadius?: number;
        rowHeight?: number;
        theme?: Partial<SvgTheme>;
        title?: string;
        width: number;
        xLabel?: string;
    }
    Index

    Properties

    embedData?: boolean
    formatX?: (v: number) => string
    hoverRadius?: number

    Radius (px) of a transparent hover target placed over each dot so the <title> tooltip is easy to trigger (the visible dot is only ~4px). Off by default; set e.g. 11 for fat fingers / dense dot-strips. The visible dot is unchanged.

    rowHeight?: number

    Height of each row band, px. Default 34.

    theme?: Partial<SvgTheme>
    title?: string
    width: number
    xLabel?: string