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

    Interface RenderSVGChartOptions

    Chart-level options that affect a static SVG (the SVG-relevant subset of FChartOptions).

    interface RenderSVGChartOptions {
        ariaLabel?: string;
        formatX?: (v: number) => string;
        formatY?: (v: number) => string;
        locale?: string;
        xInteger?: boolean;
        xLabel?: string;
        xTickCount?: number;
        xType?: "linear" | "time";
        yLabel?: string;
        yPadding?: number;
        yScale?: "linear" | "log";
        yTickCount?: number;
    }
    Index

    Properties

    ariaLabel?: string
    formatX?: (v: number) => string
    formatY?: (v: number) => string
    locale?: string

    BCP-47 tag localizing the DEFAULT tick/value formatters via Intl (matches the live chart's locale option). Explicit formatX/formatY always win; without a locale the deterministic English defaults are unchanged. An invalid tag throws.

    xInteger?: boolean

    Treat x as integer indices (ticks step >= 1). Default false.

    xLabel?: string
    xTickCount?: number
    xType?: "linear" | "time"

    X-axis flavor. 'time' treats x as epoch ms: calendar-boundary ticks + a date/clock formatX default. Default 'linear' (matches the live chart).

    yLabel?: string
    yPadding?: number

    Fractional y-extent padding. Default 0.06 (matches the live chart).

    yScale?: "linear" | "log"

    Y-axis scale. 'log' (base 10) needs positive data; non-positive samples clamp to the plot bottom. Default 'linear' (matches the live chart).

    yTickCount?: number