@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface Messages

    The full set of translatable strings the chart renders. Every key has an English default in DEFAULT_MESSAGES; a host overrides any subset via ChartConfig.messages and falls back to the default for the rest.

    Naming: a11y* are screen-reader strings, legend* are the single-letter OHLCV legend labels, and the rest are visible UI chrome.

    interface Messages {
        a11yChartHint: string;
        a11yChartLabel: string;
        a11yClose: string;
        a11yHigh: string;
        a11yLow: string;
        a11yOpen: string;
        goToLive: string;
        legendClose: string;
        legendHigh: string;
        legendLow: string;
        legendOpen: string;
        legendVolume: string;
    }
    Index

    Properties

    a11yChartHint: string

    Hint appended after the label describing keyboard controls.

    a11yChartLabel: string

    aria-label on the focusable chart canvas (announced on focus).

    a11yClose: string

    Word for "close" in the crosshair OHLC live-region announcement.

    a11yHigh: string

    Word for "high" in the crosshair OHLC live-region announcement.

    a11yLow: string

    Word for "low" in the crosshair OHLC live-region announcement.

    a11yOpen: string

    Word for "open" in the crosshair OHLC live-region announcement.

    goToLive: string

    Text of the floating "scroll back to the live edge" pill.

    legendClose: string

    Legend label for the close price.

    legendHigh: string

    Legend label for the high price.

    legendLow: string

    Legend label for the low price.

    legendOpen: string

    Legend label for the open price (single letter in en).

    legendVolume: string

    Legend label for volume.