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

    Interface FChartStrings

    Localizable UI strings — every fixed phrase the accessibility layer emits.

    The library's own prose (keyboard help, legend label, data-summary sentence, table caption) is English by default. In a non-English host document those would be untagged different-language passages (WCAG 3.1.2 Language of Parts). Because each phrase interleaves author content (series names, axis labels, formatted numbers) with connective prose, the correct fix is to let the integrator supply translations that match their page — not to wrap mixed subtrees in a lang attribute. Strings are {token} templates filled by format.

    interface FChartStrings {
        chartName: string;
        close: string;
        eventKeysHelp: string;
        exportCsv: string;
        hidden: string;
        high: string;
        keyboardHelp: string;
        legendGroup: string;
        low: string;
        open: string;
        pagerNext: string;
        pagerPrev: string;
        selected: string;
        shown: string;
        summaryAllHidden: string;
        summaryEvents: string;
        summaryLine: string;
        summaryNoData: string;
        summaryPart: string;
        summarySpan: string;
        tableCaption: string;
        trendDown: string;
        trendFlat: string;
        trendUp: string;
    }
    Index

    Properties

    chartName: string

    Chart accessible name. Tokens: {name} {series} {points} {help}.

    close: string
    eventKeysHelp: string

    Event-marker key instructions, appended to the accessible name only when the chart has annotations. No tokens.

    exportCsv: string

    Accessible label for the opt-in CSV download control. No tokens.

    hidden: string
    high: string
    keyboardHelp: string

    Keyboard operating instructions woven into the chart's accessible name. No tokens.

    legendGroup: string

    Accessible name for the legend button group. No tokens.

    low: string
    open: string

    OHLC value words for candle series (announcements, table headers). No tokens.

    pagerNext: string
    pagerPrev: string

    Accessible labels for the single-pointer pan buttons. No tokens.

    selected: string

    Word appended to an event-marker announcement when it becomes pinned/selected. No tokens.

    shown: string

    Per-series visibility state words (visible-only; aria-pressed carries state for AT).

    summaryAllHidden: string

    One-line summary, all series hidden. Tokens: {label} {points}.

    summaryEvents: string

    Event-annotations clause appended to the summary. Tokens: {count} {labels}.

    summaryLine: string

    One-line summary sentence. Tokens: {label} {points} {span} {parts}.

    summaryNoData: string

    One-line summary, empty dataset. Tokens: {label}.

    summaryPart: string

    Per-series clause within the summary. Tokens: {name} {min} {max} {last} {dir}.

    summarySpan: string

    x-range phrase within the summary. Tokens: {start} {end}.

    tableCaption: string

    Data-table caption. Tokens: {caption} {series} {rows}.

    trendDown: string
    trendFlat: string
    trendUp: string

    Direction phrases. {pct} for up/down; flat has no token.